配置nginx1.8支持thinkPHP3.2 pathinfo模式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置nginx1.8支持thinkPHP3.2 pathinfo模式相关的知识,希望对你有一定的参考价值。
nginx 下conf/nginx.conf 或者自己的vhosts
更改以前的参数
location / {
root html;
index index.html index.htm index.php;
try_files $uri /index.php$uri;
if (!-e $request_filename) {
rewrite ^/子目录名/(.*)$ /子目录名/index.php?s=$1 last; #去除index.php
break;
}
}
location ~ .+\.php($|/) {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
include fastcgi_params;
}
以上是关于配置nginx1.8支持thinkPHP3.2 pathinfo模式的主要内容,如果未能解决你的问题,请参考以下文章
LNMP1.3一键安装Linux环境,配置Nginx运行ThinkPHP3.2
ThinkPHP3.2.3 Nginx 下 URL_MODEL 的配置