对于以下内容,RewriteRule
的等效内容是什么?
Redirect permanent /a.html http://www.example.com/b/
请注意,a.html
也位于同一个域中,例如 www.example.com
我发现使用Redirect
指令有点麻烦,因为"destination" URL cannot use a relative path。
答案 0 :(得分:0)
如果您想将a.html重定向到同一个域,但/ b /目录即http://www.anydomain.com/a.html到http://www.anydomain.com/b/,请将以下内容添加到域根目录中的.htaccess文件中。
RewriteEngine On
RewriteBase /
#reirect a.html to /b/
RewriteRule ^a.html$ b/ [L,R=301]