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

TP5配置隐藏入口index.php文件,Apache/phpstudy

时间:2019-10-24 18:18:30      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:phpstudy   php文件   cond   div   dex   options   ons   info   request   

一,找到/public/.htaccess文件,如果你的入口文件已经移动到根目录下,那么你的.htaccess文件也要剪切到根目录下,总之要确保.htaccess跟入口的index.php保持同级。

二,根据你的php环境分别设置.htaccess文件:

Apache:

<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>

phpstudy:

<IfModule mod_rewrite.c> 
Options +FollowSymlinks -Multiviews 
RewriteEngine on 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1] 
</IfModule>

技术图片

 

 

TP5配置隐藏入口index.php文件,Apache/phpstudy

标签:phpstudy   php文件   cond   div   dex   options   ons   info   request   

原文地址:https://www.cnblogs.com/super-zhangkun/p/11733876.html

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