共计 756 个字符,预计需要花费 2 分钟才能阅读完成。
导读 | 这篇文章主要介绍了 Nginx tp3.2.3 404 问题解决方案, 文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值, 需要的朋友可以参考下 |
最近我把 Apache 给换成 nginx,当我把 tp 项目搬过去运行的时候发现 404 错误,原来是因为 nginx 不支持 pathinfo 模式,需要自己配置,下面我配置在 server 配置里面:
location / {
#root html
index index.html index.htm index.php ;
if (!-e $request_filename) {rewrite ^/test/tp/(.*)$ /test/tp/index.php/$1 last;
break;
}
location ~ \.php { #注意这里一定要一样,不能有 $
set $script $uri;
set $path_info "/";
if ($uri ~ "^(.+\.php)(/.+)") {
set $script $1;
set $path_info $2;
}
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php?IF_REWRITE=1;
include fastcgi_params;
fastcgi_param PATH_INFO $path_info;
fastcgi_param SCRIPT_FILENAME $document_root/$script;
fastcgi_param SCRIPT_NAME $script;
}
保存配置之后,重启 nginx,配置成功, 直接支持类似于 /Index.html 这样的伪静态模式。
以上就是本文的全部内容,希望对大家的学习有所帮助。
正文完
星哥玩云-微信公众号