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