opencart 301 old url to new url 重定向错误
opencart 301 old url to new url redirection error
正在使用 Opencart Version 2.1.0.1
。我正在尝试将 old url
重定向到 new url
通过 .htaccess
它不起作用。
这是我的代码
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !https://www.example.com/index.php?route=product/category&path=62_100/$ [NC]
RewriteRule ^(.*)$ https://www.example.com/personalized/fridge-magnets/ [L,R=301]
我得到了解决方案
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+index\.php\?route=product/category&path=62_100[?\s] [NC]
RewriteRule ^ /personalized/fridge-magnets? [R=301,L]
正在使用 Opencart Version 2.1.0.1
。我正在尝试将 old url
重定向到 new url
通过 .htaccess
它不起作用。
这是我的代码
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !https://www.example.com/index.php?route=product/category&path=62_100/$ [NC]
RewriteRule ^(.*)$ https://www.example.com/personalized/fridge-magnets/ [L,R=301]
我得到了解决方案
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+index\.php\?route=product/category&path=62_100[?\s] [NC]
RewriteRule ^ /personalized/fridge-magnets? [R=301,L]