我正在尝试使用 301 永久移动指令通过 .htaccess 将网站的旧网址更改为新网址
我想将所有流量更改为新 url,并且我还想告诉搜索引擎某些页面的新地址(哪个 url 更改了)
我用了
Redirect 301 / http://www.newdomain.com/
Redirect 301 /page1.html http://www.newdomain.com/page1/
Redirect 301 /page2.html http://www.newdomain.com/page2/
Redirect 301 /page3.html http://www.newdomain.com/page3/
但我得到的结果是最后三个指令重定向到
http://www.newdomain.com/page1.html and so
有什么我在这里遗漏的,或者我需要做些什么来重定向流量并告诉每个页面的新网址是什么?