ThinkPHP5.1及以上版本,在Nginx中 404


nginx服务器部署Thinkphp 5.1框架报404解决方案

 

在nginx.conf中添加如下代码行

if (!-e $request_filename) { rewrite ^/(.*)$ /index.php/$1 last; break; }

如下图中位置:

ThinkPHP5.1及以上版本,在Nginx中 404

 

 或者 phpstudy 伪静态 添加  if (!-e $request_filename) { rewrite ^/(.*)$ /index.php/$1 last; break; }

或者 宝塔里面 添加 if (!-e $request_filename) { rewrite ^/(.*)$ /index.php/$1 last; break; }

原创文章,作者:kepupublish,如若转载,请注明出处:https://blog.ytso.com/272478.html

(0)
上一篇 2022年7月9日
下一篇 2022年7月9日

相关推荐

发表回复

登录后才能评论