Problems with redirects...

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



I'm trying to get our Apache web server to detect and redirect incoming
requests from BlackBerry PDAs to a version of the site designed for tiny
screens.  The URL for the PDA site is identical to the main site, but
with "/pda" appended.

Our httpd.conf file contains:

    # Redirects to accomodate PDA's and other tiny screens...
    RewriteCond %{HTTP_USER_AGENT} "BlackBerry" [NC]
    RewriteCond %{HTTP_HOST} ^www\.saddlebrook\.com$ [NC]
    RewriteRule ^/(.*) http://www.saddlebrook.com/pda [L,R]

This successfully detects BlackBerrys trying to access
"www.saddlebrook.com" and successfully changes the URL to
"http://www.saddlebrook.com/pda"; as I expected.

But when the redirected browser runs through the rules again, the regexp
"^www\.saddlebrook\.com$" is also matching the new URL
"http://www.saddlebrook.com/pda";.  So it redirects endlessly.

Why is regexp "^www\.saddlebrook\.com$" matching
http://www.saddlebrook.com/pda"; and how can I make this work correctly?
 
Thanks for any suggestions!

Ken



---------------------------------------------------------------------
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: users-unsubscribe@xxxxxxxxxxxxxxxx
   "   from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx
For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx



[Index of Archives]     [Open SSH Users]     [Linux ACPI]     [Linux Kernel]     [Linux Laptop]     [Kernel Newbies]     [Security]     [Netfilter]     [Bugtraq]     [Squid]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Samba]     [Video 4 Linux]     [Device Mapper]

  Powered by Linux