[PHP学习]TP5学习之Apache服务器隐藏index.php入口文件

时间:2021-10-24 19:59:57

TP5对URL进行简化,我们访问的是localhost/项目/public/index.php/index/index/index  ,做简化后省去index.php。

我们需要找到public下面的.htaccess文件或者或者新建文件放在根目录下.

在应用入口文件同级目录添加.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>
重启服务器,浏览器测试URL。