【发布时间】:2012-07-29 12:48:14
【问题描述】:
我在 wordpress 中有一个分类搜索表单,链接输出是
http://localhost/wp/?cityid=16
但我希望它被重写为
http://localhost/wp/cityid/16
.htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wp/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wp/index.php [L]
</IfModule>
# END WordPress
我找到了this,但无法实现我的情况。有什么帮助吗?
【问题讨论】: