0


apache设置禁止直接访问tp3.2目录

在.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>

标签: apache

本文转载自: https://blog.csdn.net/weixin_41790678/article/details/142971816
版权归原作者 weixin_41790678 所有, 如有侵权,请联系我们删除。

“apache设置禁止直接访问tp3.2目录”的评论:

还没有评论