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。
本文介绍如何通过修改.htaccess文件实现ThinkPHP5框架中的URL美化,去除index.php,包括具体的.htaccess配置代码。
969

被折叠的 条评论
为什么被折叠?



