匠吉游戏
您的当前位置:首页tp5如何隐藏index.php

tp5如何隐藏index.php

来源:匠吉游戏


推荐教程:《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>
显示全文