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

前端之家收集整理的这篇文章主要介绍了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;
            }

 

原文链接:https://www.f2er.com/thinkphp/881446.html

猜你在找的ThinkPHP相关文章