Magento 301 htaccess重定向根本不工作

时间:2012-08-20 06:55:03

标签: .htaccess magento

我正在通过htaccess将旧流量重定向到新网址来编写301重定向 前 我有旧网址

http://www.thebedroom.com.au/catalogue/accessories/product134

我需要将此请求重定向到

http://www.thebedroom.com.au/melbourne-demons-bean-bag-cover.html

所以我在magento httpacess上编写了一个代码,如下所示

Redirect 301 http://www.thebedroom.com.au/catalogue/accessories/product134 http://www.thebedroom.com.au/melbourne-demons-bean-bag-cover.html

没有运气

并尝试了

Redirect 301 ^accessories/product134 http://www.thebedroom.com.au/melbourne-demons-bean-bag-cover.html

但这不会重定向并在浏览器窗口中显示相同的网址。

任何人都知道这里的问题是什么

谢谢

1 个答案:

答案 0 :(得分:2)

尝试:

Redirect 301 /catalogue/accessories/product134 http://www.thebedroom.com.au/melbourne-demons-bean-bag-cover.html

RedirectMatch 301 product134 http://www.thebedroom.com.au/melbourne-demons-bean-bag-cover.html

如果URI中有product134的任何实例,它将重定向。