美文网首页
TP5怎么隐藏index.php

TP5怎么隐藏index.php

作者: 心得体会站 | 来源:发表于2019-07-15 10:49 被阅读0次

我们需要找到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>

完成

相关文章

网友评论

      本文标题:TP5怎么隐藏index.php

      本文链接:https://www.haomeiwen.com/subject/fybgkctx.html