首頁 >後端開發 >php教程 >TP5怎麼隱藏index.php

TP5怎麼隱藏index.php

不言
不言原創
2018-04-17 15:46:164097瀏覽

这篇文章介绍的内容是关于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的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn