我有两个电子商务网站abc.com和pqr.com。在几个月的时间里,我计划关闭abc.com并开始在pqr.com上列出所有产品。如何将旧网站上的某个网址重定向到新网址,并保留其他网址。
e.g。 abc.com/example-product应重定向到pqr.com/example-product abc.com/example-product-2不应该重定向。
答案 0 :(得分:1)
您可以在DOCUMENT_ROOT/.htaccess
文件中使用此规则:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(?:www\.)?abc\.com$ [NC]
RewriteRule ^example-product/?$ http://pqr.com/$0 [L,NC,R=301]