Nginx隐藏index.php和Pathinfo模式配置例子
更新时间:2014年04月21日 10:52:27 作者:
这篇文章主要介绍了Nginx隐藏index.php和Pathinfo模式配置例子,需要的朋友可以参考下
参照一下对应修改,重启nginx即可
复制代码 代码如下:
server {
listen 80;
server_name www.leiyongbo.com www.leiyongbo.com;
root /usr/local/web;
index index.php;
error_page 400 /errpage/400.html;
error_page 403 /errpage/403.html;
error_page 404 /errpage/404.html;
error_page 405 /errpage/405.html;
###########################################隐藏index.php
location / {
if (!-e $request_filename) {
###一级目录下
rewrite ^/(.*)$ /index.php/$1 last;
###域名下的二级目录
#rewrite ^/目录名/(.*)$ /目录名/index.php/$1 last;
}
}
##########################################pathinfo 模式
location ~ \.php($|/) {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(.*)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
相关文章
windows下RunHiddenConsole 启动 nginx与php(RunHiddenConsole下载)
这篇文章主要介绍了RunHiddenConsole 启动 nginx与php的相关资料,希望通过本文能帮助到大家,让大家学会使用RunHiddenConsole,需要的朋友可以参考下2017-10-10
最新评论