Hi,
I'm redirecting phone browsers to mobile web version:
...
RewriteCond %{HTTP_USER_AGENT} "android" [NC,OR]
RewriteCond %{HTTP_USER_AGENT} "AvantGo" [NC]
RewriteRule (/example.*) /mobile/#_example [NE,R,L]
I need to exclude 1 directory from the rule so that /example/1directory/ doesn't redirect to the mobile site. I have tried a few ways which haven't worked. How can I configure this?
Thank you.