.htaccess - 允许直接访问多个特定文件,同时阻止其余文件

时间:2017-01-21 19:49:06

标签: php apache .htaccess mod-rewrite

我一直在围绕论坛和谷歌进行研究,但所有资源都指出要阻止除一个文件之外的所有文件。我需要允许多个文件进行直接访问。请看一下当前的.htaccess:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

上述代码将阻止/index.php以外的所有代码。我如何允许更多文件进行直接访问,例如/static_app.php

0 个答案:

没有答案