我们的网站名称已更改,我们对这两个域都有一个ssl。但是,旧站点的所有链接都没有重定向,例如:
https://olddomain.com/productA不会重定向到https://newdomain.com/productA
它显示没有样式的旧网站。
如果您转到https://oldomain.com,它会重定向到https://newdomain.com
这是.htaccess文件包含的内容(有些是从Cpanel生成的,如果我重定向特定页面,它可以正常工作)
RewriteEngine on
# RewriteCond %{HTTPS} on
# RewriteCond %{HTTP_HOST} ^928shopper\.com$ [OR]
# RewriteCond %{HTTP_HOST} ^www\.928shopper\.com$
# RewriteRule ^lake\-havasu\-city\-restaurants\-guide\/$ "https\:\/\/shophalfoff\.com\/lake\-havasu\-city\-restaurants\-guide\/" [R=301,L]
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^928shopper\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.928shopper\.com$
RewriteRule (.*) https://shophalfoff.com/%{REQUEST_URI}
有什么想法吗?