I'm a little new to the whole .htaccess, and I tried to change it so that none of my links had trailing slashes at the end of their respective URLs. My site is filmblurb.org.
The code for .htaccess, where Wordpress starts and ends, is as follows:
# 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
I would appreciate it if someone could lead me in the right direction on how to fix this. Thanks.
source share