vote up 0 vote down star

There are quite a few results for add trailing slash .htaccess on Google, but all examples I found require the use of your domain name, as in this example:

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !example.php
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://domain.com/$1/ [L,R=301]

My problem is that a hard-coded domain name will not work on my local development machine. Is there a way to add trailing slashes without explicitly telling mod_rewrite the domain name?

flag
Looks like a question that belongs more on serverfault.com instead of stackoverflow.com. – Wouter Coekaerts Nov 3 at 17:18

2 Answers

vote up 1 vote down

You don’t need to specify the domain, you can simply use an absolute URL path:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*[^/])$ /$1/ [L,R=301]

That does also make a check for the URL scheme obsolete.

link|flag
vote up 1 vote down

This should work:

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !example.php
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1/ [L,R=301]
link|flag
.* will match backslashes, use [^/]* instead – Oz Nov 3 at 17:16
err, in addition to I meant, such as Gumbo uses below. – Oz Nov 3 at 17:17
@Oz, yes that would be better. I was merely demonstrating the use of %{HTTP_HOST}, so I went for minimal change of the originally given snippet. – Siddhartha Reddy Nov 3 at 17:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.