我希望301将旧域上的15个WP博客URL重定向(在.htaccess中)到新域上新的相应URL。
除了启用Apache mod_rewrite模块和ReWriteEngine之外,我的.htaccess文件还包含以下内容的组合:
Redirect 301 /old1 http://www.example.com/new1
Redirect 301 /old2 http://www.example.com/new2
Redirect 301 /old3 http://www.example.com/new3
Redirect 301 /old4 http://www.example.com/new4
Redirect 301 /old5 http://www.example.com/new5
Redirect 301 /old6 http://www.example.com/new6
Redirect 301 /old7 http://www.example.com/new7
问题是,而不是/ old1重定向到http://www.example.com/new1,而是重定向到 http://www.example.comnew1 ,这当然是无效的。
有谁知道为什么会这样?