| Posted: 26 October 2011 at 1:31pm | IP Logged
|
|
|
I am using isapi 2.X
I would like to re-write a host and redirect based on device type.
if you are a android:
from: www-stg.airline.com
to http://www-dev2.airline.com/mobile
If you are a iphone:
from: www-stg.airline.com
to http://www-dev3.airline.com/mobile
This does not work:
RewriteCond Host: www-stg\.airline\.com RewriteCond User-Agent: (?:.*Android.*)
RewriteRule (.*) http://www-dev2.airline/mobile/app.aspx [I,L,R]
RewriteCond Host: www-stg\.airline\.com RewriteCond User-Agent: (?:.*iphone.*)
RewriteRule (.*) http://www-dev3.airline/mobile/app.aspx [I,L,R]
Any help would be greatly appreciated.
|