PHP教程

TP5隐藏index.php

本文主要是介绍TP5隐藏index.php,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

tp5对URL简化,不做简化情况下我们访问的是localhost/index.php/index/index/index ,做简化后省去index.php。

我们需要找到public下面的.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>
这篇关于TP5隐藏index.php的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!