RewriteRule等价

时间:2011-12-01 17:08:08

标签: apache .htaccess configuration apache2 configuration-files

对于以下内容,RewriteRule的等效内容是什么?

Redirect permanent /a.html http://www.example.com/b/

请注意,a.html也位于同一个域中,例如 www.example.com

我发现使用Redirect指令有点麻烦,因为"destination" URL cannot use a relative path

1 个答案:

答案 0 :(得分:0)

如果您想将a.html重定向到同一个域,但/ b /目录即http://www.anydomain.com/a.htmlhttp://www.anydomain.com/b/,请将以下内容添加到域根目录中的.htaccess文件中。

RewriteEngine On
RewriteBase /

#reirect a.html to /b/ 
RewriteRule ^a.html$ b/ [L,R=301]
相关问题