deadendstreet
deadendstreet

Reputation: 111

How do I remove the slash at the end of a url?

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

Answers (1)

James Coyle
James Coyle

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

Related Questions