美文网首页
让Nginx支持pathinfo

让Nginx支持pathinfo

作者: 布尔教育 | 来源:发表于2016-11-26 10:42 被阅读0次

布尔教育PHP学习笔记

Nginx服务器默认不支持pathinfo, 在需要pathinfo支持的程序中(如thinkphp),则无法支持”/index.php/Home/Index/index”这种网址.

网上流传的解决办法很多,这里提供一种比较简洁的写法(只需要改动2行代码)

# 典型配置

 location~\.php${

root    html;

fastcgi_pass    127.0.0.1:9000;

fastcgi_index    index.php;

fastcgi_param    SCRIPT_FILENAME    $DOCUMENT_ROOT$fastcgi_script_name;

include    fastcgi_params;

}

# 修改第1,6行,支持pathinfo

location~ \.php(.*)${# 正则匹配.php后的pathinfo部分

root    html;

fastcgi_pass    127.0.0.1:9000;

fastcgi_index    index.php;

fastcgi_param    SCRIPT_FILENAME    $DOCUMENT_ROOT$fastcgi_script_name;

fastcgi_param    PATH_INFO$1;# 把pathinfo部分赋给PATH_INFO变量

include    fastcgi_params;

}

相关文章

网友评论

      本文标题:让Nginx支持pathinfo

      本文链接:https://www.haomeiwen.com/subject/kxzwpttx.html