Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Rewrite engine
- To: nginx-ru@xxxxxxxxx
- Subject: Rewrite engine
- From: "Grohotun" <nginx-forum@xxxxxxxx>
- Date: Fri, 20 Aug 2010 03:04:48 -0400
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mickey.jlkhosting.com; s=x; h=Sender:From:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To:Date; bh=lXX7LBEFss0PicM+jMNJtVMbZU6GfZk79J5uKxGCVn4=; b=Hea024e2J5XP3EVAoOr1NjaTzXn1+D9FSQcsnL8fIGwkpKE0380wdbitJfJH+XY4lydXs4dc/1Pb0pbLs/HdYqbn2rvGM21dN7TgihfIP2CVS3QOKiimxY0v7FGgjh+F;
Всем добрый день!
Переношу одну систему на nginx + fastcgi c
апача.
В системе стоит такой .htaccess:
AddDefaultCharset UTF-8
DirectoryIndex index.php
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
по идее он должен всё передавать с
index.php?auth/login на index.php/auth/login
Но не хочет.
Конф хоста:
server {
listen 80;
server_name stat.*********.ru;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log debug;
location / {
root /var/www/lider;
index index.php;
rewrite_log on;
if (!-f $request_filename){
set $rule_0 1$rule_0;
}
if (!-d $request_filename){
set $rule_0 2$rule_0;
}
if ($rule_0 = "21"){
rewrite ^/(.php)$ /index.php?/$1 last;
}
}
location ~ \.php$ {
root /var/www/lider;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME
/var/www/lider$fastcgi_script_name;
include fastcgi_params;
}
}
Соответсвенно в логих пишется:
2010/08/20 11:02:58 [notice] 16433#0: *1 "^/(.*)$" matches
"/index.php/auth/login", client: 77.241.**.**, server: stat.*******.ru,
request: "GET /index.php/auth/login HTTP/1.1", host:
"stat.**********.ru"
2010/08/20 11:02:58 [notice] 16433#0: *1 rewritten data: "/index.php",
args: "/index.php/auth/login", client: 77.241.***.***, server:
stat.*******ru, request: "GET /index.php/auth/login HTTP/1.1", host:
"stat.********.ru"
Не поможете?
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,121618,121618#msg-121618
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|