wordpress htaccess mod_rewrite列表

时间:2017-04-20 21:49:51

标签: php wordpress apache .htaccess mod-rewrite

我使用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]

可以帮帮我吗?

1 个答案:

答案 0 :(得分:0)

重写规则应该是,尝试以下,

RewriteRule ^listing/([^/]*)/? /listing/?category_type=$1&city=$2 [QSA,L]