2

我正在尝试使用 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

有什么我在这里遗漏的,或者我需要做些什么来重定向流量并告诉每个页面的新网址是什么?

4

1 回答 1

0

我实际上设法通过重新组织 htaccess 内容来解决这个问题

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/
RedirectMatch 301 /(.*) http://www.domaintoredirecto.com1

工作...

于 2013-04-14T03:18:10.437 回答