我有一个看起来像这样的 .htaccess 文件。如果文件或目录存在并且也生成了 403 错误,我想做的是将请求传递到 index.php。
也就是说,如果服务器上存在“/foo/bar”,但生成了 403,我希望将“/foo/bar”传递到 index.php,就好像目录“/foo/bar”不存在一样服务器。
可能的?
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
#Make sure the physical file doesn't exist
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>