我在wordpress中使用fullpage插件(来自https://alvarotrigo.com/fullPage/),但我想删除网址中的#firstPage但使用按钮,因此我无法使用noAnchor(https://alvarotrigo.com/fullPage/examples/noAnchor.html)。我可以用htaccess重写URL吗?像这样的东西
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php/#firstPage$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>