On Feb 4, 2008 5:20 PM, thomas Armstrong <[EMAIL PROTECTED]> wrote:
> I tried adding this line
> ---------
> RewriteRule ^(.*)$ /$1/ [R=301]
> ---------

> The page isn't redirecting properly

At least protect it from running when the URL ends in a slash such as:

RewriteRule ^(.*[^/])$ /$1/ [R=301]

You're unexpected behavior is a result of doing rewrite in .htaccess,
so the rules are re-visited at a later stage despite the L flag.
-- 
Eric Covener
[EMAIL PROTECTED]

---------------------------------------------------------------------
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