您好我正在尝试编写一个mod_rewrite规则来重定向除根文件夹之外的所有内容。 例如,www.example.com应加载index.html文件 对于其他一切,例如www.example.com/tag,/ tag应该传递到子目录
中的脚本现在我有
RewriteCond %{REQUEST_URI} !^/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) app/webroot/$1 [L]
这会加载index.html,但/ tag不会传递给webroot。我收到404错误。
由于
答案 0 :(得分:9)
这个问题是:
RewriteCond %{REQUEST_URI} !^/
你说任何以'/'开头的内容都不会被重写,而且所有内容都以'/'开头。您最后需要使用$
:
RewriteCond %{REQUEST_URI} !^/$
我不确定你是否需要这个规则,因为如果index.html存在,其他两个规则将自动处理。只需使用这些来重写任何不存在的东西:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ app/webroot/$1 [L,QSA]
您可以在应用中处理404错误,因为无论如何您都必须使用子目录。