I want my URL's to add the trailing slash, but only when the URL does not end with an anchor.
Here's my current .htaccess file
# ----------------------------------------------------------------------
# Enable Rewrite Engine
# ----------------------------------------------------------------------
RewriteEngine On
RewriteBase /
# ----------------------------------------------------------------------
# Remove the www from the URL
# ----------------------------------------------------------------------
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
# ----------------------------------------------------------------------
# Add a trailing slash to paths without an extension
# ----------------------------------------------------------------------
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule ^(.*)$ $1/ [L,R=301]
# ----------------------------------------------------------------------
# Remove index.php
# ----------------------------------------------------------------------
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
When I link to an anchor'd section, the URL's get written to:
http://mysite.com/subdir/#anchor
When they should look like this:
http://mysite.com/subdir#anchor
Regular URLs should look like this:
http://mysite.com/directory/sub/
I'm pretty stumped, so any help would be great!
Cheers,
Dan
