1

我正在尝试重定向以下 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]

但它不起作用。关于我所缺少的任何想法?

谢谢

4

1 回答 1

1

在您的文件中尝试以下代码DOCUMENT_ROOT/.htaccess

RewriteEngine On

RewriteCond %{QUERY_STRING} ^brand=1076&mode=grid&product_category=5533&(q=pro\+restore)$ [NC]
RewriteRule ^catalogsearch/result/index/?$ /nsearch/?%1 [R=301,L]
于 2013-11-01T14:18:10.417 回答