Hi
Having spent the better part of a day wrestling with mod_rewrite I find
myself making little headway.
I am attempting to convert the following example into rewritemap format:
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/3.*
RewriteRule ^foo\.html$ foo.NS.html [L]
RewriteCond %{HTTP_USER_AGENT} ^Lynx/.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/[12].*
RewriteRule ^foo\.html$ foo.20.html [L]
RewriteRule ^foo\.html$ foo.32.html [L]
It doesnt seem to work however, and im wondering if rewritemap is breaking
on the unescaped characters
in the HTTP_USER_AGENT string. Has anyone out there got a working example of
a rewritemap using
HTTP_USER_AGENT?
Marc