您好我需要使用.htaccess为我的wordpress网站实现以下网址更改。
我有这个链接http://www.johnjhoward.com/search-by-mls/
所以我想做的是将URI重写为这种格式 http://www.johnjhoward.com/listings/listings#/地址
我想将mls#和我的mls的地址添加到我的URI中。我不知道从哪里开始以及如何去做。
.htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
答案 0 :(得分:0)