TP5在Nginx环境下去掉url中的index.php


第一步:修改.htaccess文件如下

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>

第二步:修改nginx.conf 的 location / { } 部分

我修改的是对应站点的nginx配置文件

 

 

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

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM