我需要从www.site.ru/machines/这样的页面重定向到.htaccess的mod_rewrite部分中的www.site.ru/machines/?set_filter=y&PRICE_MIN=4500页面。
答案 0 :(得分:0)
您可以在root .htaccess中使用此规则:
RewriteEngine On
RewriteCond %{QUERY_STRING} ^$
RewriteRule ^(machines/)$ /$1?set_filter=y&PRICE_MIN=4500 [L,NC,R]