我使用WordPress,并有这个链接:
http://test.example.com/listing/?category_type=Cake&city=Ahmedabad
我想要这个:
http://test.example.com/Cake/Ahmedabad/
我尝试在.htaccess上添加此内容,但
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)$ /listing/?category_type=$1&city=$2 [L]
可以帮帮我吗?
答案 0 :(得分:0)
重写规则应该是,尝试以下,
RewriteRule ^listing/([^/]*)/? /listing/?category_type=$1&city=$2 [QSA,L]