我对整个 .htaccess 东西有点陌生,我一直在尝试修改它,以便我的任何链接都不会在其各自 URL 的末尾带有斜杠。我的网站是filmblurb.org。
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
如果有人能引导我朝着正确的方向解决这个问题,我将不胜感激。谢谢。