本文主要是介绍TP5怎么隐藏index.php,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
tp5对URL简化,不做简化情况下我们访问的是localhost/index.php/index/index/index ,做简化后省去index.php。
我们需要找到public下面的.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>
这样就可以直接访问localhost/index/index/index 了
这篇关于TP5怎么隐藏index.php的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!