0
的URL我有URL http://www.domain.com/postname/?a_different_world如何移除?使用htaccess的
我需要將其更改爲http://www.domain.com/postname/a_different_world
如何去除?從URL使用Htacccess(Wordpress)
我使用以下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]
請使用'example.com'作爲您的示例域,而不是'domain.com'(它由某人擁有,可能不是您)。 – unor