我有一个 URL http://www.domain.com/postname/?a_different_world
我需要将其更改为http://www.domain.com/postname/a_different_world
如何去除?从使用 Htacccess(Wordpress) 的 URL
我使用以下 htaccess 代码。但它不工作
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php-$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . /domain.com/index.php [L]
RewriteRule ^/postname/([0-9]+)$ /? $1 [L,QSA]