tp5如何隐藏index.php

作者:

tp5隐藏index.php的方法:首先打开“pullic/static/.htaccess”目录;然后修改内容为“RewriteRule ^.*)index.php?s =1 [QSA,PT,L]”;最后保存文件即可。

推荐教程:《thinkphp框架》

tp5隐藏index.php

目录

//pullic/static/.htaccess

文件内容如下

<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^.*)index.php?s =1 [QSA,PT,L]
</IfModule>

评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注