nginx部署TP5项目,除了首页都是404的解决办法

在配置文件中加上这段:

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

亲测有效 

发布了94 篇原创文章 · 获赞 4 · 访问量 6万+

猜你喜欢

转载自blog.csdn.net/chendongpu/article/details/98510784