2012-05-07 95 views
0

我試圖做301重定向通過htaccess的301重定向通過htaccess的

Redirect 301 /page_one http://site.com/ 

但這種代碼也重定向/page_one

例如每個孩子環節也重定向site.com/page_one/article to site.com/article

如何使301重定向完全從/page_onesite.com/

回答

1

Redirect指令使用前綴匹配,如下例所示:

Redirect /service http://foo2.bar.com/service 

如果客戶要求HTTP://myserver/service/foo.txt,這將是 告知改爲訪問http://foo2.bar.com/service/foo.txt

嘗試使用RedirectMatch

RedirectMatch 302 ^/page_one$ http://site.com 

變化302301測試後。並且可能需要刪除尾部/