0

我有一个看起来像这样的 .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>
4

1 回答 1

2

错误条件的处理是通过 执行的ErrorDocument

于 2012-06-01T02:17:15.263 回答