码迷,mamicode.com
首页 > Web开发 > 详细

tp5.1 nginx环境下url去掉index.php

时间:2020-02-07 15:00:36      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:lin   设置   http   nginx   writer   修改   xxxxxx   ast   link   

原来的地址http://xxxxxxx/index.php/admin/login/index.html

修改完的路径http://xxxxxxx/admin/login/index.html

修改.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配置,如果使用的宝塔linux,直接在网址->单个网站设置->配置文件中合适的地方加上下面的代码即可

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

 

tp5.1 nginx环境下url去掉index.php

标签:lin   设置   http   nginx   writer   修改   xxxxxx   ast   link   

原文地址:https://www.cnblogs.com/dayin1/p/12272865.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!