编程语言
首页 > 编程语言> > 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>

标签:index,php,REQUEST,FILENAME,TP5,简化,RewriteCond
来源: https://blog.csdn.net/qq_35230125/article/details/122757233