Blogger Information
Blog 17
fans 0
comment 1
visits 21516
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
TP5上传服务器除了首页都是404解决办法
Ant.
Original
1147 people have browsed it

主要是因为path info的问题 , 我试了很多方式 , 就这个亲测有效 ,
前提是你试试 你的网址.com/index.php?s=index/index/index , 这个路径是否能正常访问你的首页 . 如果可以 , 修改你nginx.conf 在server中 , 添加下面这段 .

实例

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

运行实例 »

点击 "运行实例" 按钮查看在线实例


保存重启nginx ( 亲测有效 )

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post