TP5隐藏index.php

2023-08-08 13:21:21 浏览数 (1)

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

我们需要找到public下面的.htaccess文件

apache:

代码语言:javascript复制
<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>

0 人点赞