我的.htaccess文件中有以下内容:
RewriteCond %{QUERY_STRING} ^route\=product\/category\&path\=35\&page\=([0-9]+)$
RewriteRule ^index\.php$ http://%{HTTP_HOST}/product/category/35/page_$1? [R=301,L]
当我输入网址时,它的表现并不像预期的那样:
http://example.com/index.php?route=product/category&path=35&page=2
它被重写为:
http://example.com/product/category/35/page_
有人可以告诉我,我做错了吗?
谢谢,
eb_dev
答案 0 :(得分:8)
要引用RewriteCond
指令的子匹配,您需要使用%n
代替$n
:
RewriteCond %{QUERY_STRING} ^route=product/category&path=35&page=([0-9]+)$
RewriteRule ^index\.php$ /product/category/35/page_%1? [R=301,L]