【发布时间】:2011-04-15 19:37:06
【问题描述】:
每个文件都被传递给“index.php”,但由于 fastcgi,每个 php 文件都没有正确重定向。任何解决方法?
location / {
if ($request_filename ~* "index.php") {
break;
}
rewrite ^/(.*)$ /index.php?page=$1 last;
break;
}
location ~* \.php$ {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name;
fastcgi_pass 127.0.0.1:9000;
}
谢谢
【问题讨论】: