LuManager中的Nginx让支持pathinfo

作者: 蓝鹰 分类: LuManager 发布时间: 2013-10-18 13:57 ė137 浏览数 6LuManager中的Nginx让支持pathinfo已关闭评论

1、网站管理中找到要支持PATHINFO的网站,然后点击右边的“修改”。
2、找到 Nginx扩展设置(location段).
3、在location中填入下列:

location ~* \.(php[3-9]?|phtm[l]?)(\/.*)*$ {
fastcgi_index index.php;
fastcgi_pass 127.0.0.1:8999;
include fastcgi_params;
set $path_info "";
set $real_script_name $fastcgi_script_name;
if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {
set $real_script_name $1;
set $path_info $2;
}
fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
fastcgi_param SCRIPT_NAME $real_script_name;
fastcgi_param PATH_INFO $path_info;
}

4、保存并重启Nginx服务即可。

测试代码:

正常情况下,你可以看到it works

如果您点击下面的链接还是可以看到上面的文字而不是404,说明支持pathinfo

index.php/home

PATH_INFO:
echo $_SERVER[‘PATH_INFO’];
?>

本文出自 蓝鹰博客,转载时请注明出处及相应链接。

本文永久链接: http://www.lanyingblog.com/blog/1113.html

Ɣ回顶部