我想:
这是我放入htaccess文件的内容:
redirect 301 / http://www.newdomain.com/page
redirect 301 /article1/ http://www.newdomain.com/article1
第一个重定向有效,但是,第二个重定向不起作用,因为www.olddomain.com/article1重定向到www.newdomain.com/page/article1,它不存在,因此返回404错误。
如何将旧域主页(root)重定向到新的域子目录,而不会影响所有其他重定向?
答案 0 :(得分:0)
在.htaccess代码应该是这样的:
RewriteEngine On
RewriteRule ^/$ http://www.newdomain.com/page [L,R=301]
RewriteRule ^/article1/$ http://www.newdomain.com/article1 [L,R=301]