0
点赞
收藏
分享

微信扫一扫

phpstudy隐藏index.php

hwwjian 2022-02-08 阅读 47

在.htaccess文件填入,注意index.php使用?

<IfModule mod_rewrite.c>
RewriteEngine on
 
RewriteCond $1 !^(index.php|images|robots.txt)
 
RewriteRule ^(.*)$ /index.php?/$1 [L]
</IfModule>


举报

相关推荐

0 条评论