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
私はこれを見つけましたが、私の場合には実装できませんでした。何か助けてください。