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

Posted code练习生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TP5配置隐藏入口index.php文件,Apache/phpstudy相关的知识,希望对你有一定的参考价值。

一,找到/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的主要内容,如果未能解决你的问题,请参考以下文章

TP5隐藏index.php

thinkphp5 - 2 - URL重写

关于tp5框架的安装与配置

Nginx配置 隐藏入口文件index.php

入口文件 index.php 隐藏

TP5多入口设置