Hi,

I have a web page that works when you include the trailing slash:

http://www.foo.com/blah/

But, if you leave the trailing slash off, it does not work and you get a 403
error:

http://www.foo/com/blah

So, I tried to fix this using some mod_rewrite rules, as follows:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -d
RewriteCond %{REQUEST_URI} !/$
RewriteRule (.*) $1/ [R,L]

But it seems that the "-d" test is always failing.  If I comment that part
out, then *everything* gets a "/" appended to the end, which of course
doesn't work.  I tried using "!-f" instead, and got similarly bad results.

I've Googled this and read lots of solutions that all look more or less like
what I've posted above, but none of them seem to actually work.

Is there something I'm missing here?

FWIW, I'm running Apache 2.2 on CentOS 5.1.

Thanks for any help you can give!

Tim Gustafson
SOE Webmaster
UC Santa Cruz
[EMAIL PROTECTED]
(831) 459-5354



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to