在.htaccess中设置如下
<IfModule mod_rewrite.c> Options +FollowSymlinks -Indexes RewriteEngine On禁止访问 /Application 目录
RewriteRule ^Application(/.*)?$ - [F,L]
继续处理其他请求
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
版权归原作者 weixin_41790678 所有, 如有侵权,请联系我们删除。