我正在寻找以下网址重写规则的解决方案
网址:http://localhost/mysite/abc/index.php?route=product/category&path=1
这必须重写为
http://localhost/mysite/index.php?route=product/category&path=1&store=abc
我尝试了以下
RewriteRule ^([^/]*)/([^/]*)$ $2&store=$1 [L]
但它最终在/mysite/index.php&store=abc
无法获得全部$ 2