我们正在使用 wordpress,我们在 .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
我们有一个类似http://subdomain.example.com/select-a-card/?q=fuel的 URL ,我们想重写它,使它变成类似http://subdomain.example.com/fuel-卡片/
我需要在 htaccess 中添加什么来执行此操作?此外,这会影响使用 GET 变量运行的查询吗?