这是我当前的.htaccess文件:
# BEGIN WPSuperCache
# END WPSuperCache
# 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
我希望删除部分网址中的?tmpl = component 。
示例网址 https://www.example.com/example/?tmpl=component
想要最终到达网址: https://www.example.com/example/
我应该添加什么代码?