Reputation: 111
Currently, the only way to get to a link on my website it to have a slash at the end of the url like www.me.com/portfolio/ How can I remove the slash at the very end?
Upvotes: 0
Views: 339
Reputation: 10398
Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteBase /
# Remove slashes
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(.*)$
RewriteRule ^(.*)$ http://domain.com/$1 [L,R=301]
I believe this would work. Put it in the directory you want to do this in.
Upvotes: 3