すべての WordPress URL の末尾のスラッシュを削除する方法を探しています。
このような同様の回答が見つかりましたが、以前に WordPress .htaccess ルールがある場合は機能しません。
これが私の現在の 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