如何在Magento 1.7.0.2中进行301重定向?

时间:2013-10-18 09:25:18

标签: php .htaccess magento redirect

我们最近将旧的Eshop从aspx技术改为Magento 1.7.0.2

我的旧网址就像

http://www.demostore.nl/Contact.aspx

http://www.demostore.nl/category1.aspx

现在在magento就像

http://www.demostore.nl/contacts

http://www.demostore.nl/products-category1

您能否举例说明如何以及如何将所有旧网址包含301 重定向到新的Magento网站?我假设它会在 htaccess 里面,但我不知道该怎么做?

1 个答案:

答案 0 :(得分:1)

将此代码放入DOCUMENT_ROOT/.htaccess文件中:

RewriteEngine On


# catehory1.aspx => products-category1
RewriteRule ^(category[^.]*)\.aspx$ /products-$1 [L,R=301,NC]

# contact.aspx => contacts
RewriteCond %{REQUEST_URI} !^/category [NC]
RewriteRule ^(.+?)\.aspx$ /$1s [L,R=301,NC]