如果我编辑.htaccess
某个站点的文件,比如 oldsite.com,并输入以下内容:
Redirect permanent / http://newsite.com/page
如果我访问 oldsite.com,它工作正常。但如果我访问 oldsite.com/about,它就会转到http://newsite.com/pageabout
我怎样才能将任何访问转移到旧站点并将其置于绝对 URL 而不保留其余路径?
答案1
RedirectMatch permanent ^ http://newsite.com/page
應該做。