How To‎ > ‎

Remove trailing slash from urls

Apache


Read the considerations carefully
(eg: relative urls like <a href="info/"> will stop working!)

Add to your <Directory>
DirectorySlash Off

Add to .htaccess
RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L]

See

And


Background

See "Trailing Slash Problem" in

Comments