我正在尝试重定向以下 URL
http://www.mydomain.com/catalogsearch/result/index/?brand=1076&mode=grid&product_category=5533&q=pro+restore
到这个网址:
http://www.mydomain.com/nsearch/?q=pro+restore
这是我在 htaccess 中用于其他 url 的代码:
RewriteCond %{REQUEST_URI} ^/catalogsearch/result/index/$
RewriteCond %{QUERY_STRING} ^brand=1076&mode=grid&product_category=5533&q=pro+restore$
RewriteRule ^(.*)$ http://www.mydomain.com/nsearch/?q=pro+restore [R=301,L]
但它不起作用。关于我所缺少的任何想法?
谢谢