chungyu_16122
Jul 10, 2012Altostratus
iRule to redirect mobile browsers
Hi all
I started to use a irule I found on Dev Central to redirect blackberry, iphone, android, etc too a mobile site. But it semms that the re-direct is not able to take place, users just end up on the main site.
when HTTP_REQUEST {
if { [string tolower [HTTP::host]] contains "www.mcgill.ca/desautels" } {
switch -glob [string tolower [HTTP::header User-Agent]] {
"*blackberry*" -
"*iPhone*" -
"*Android*" -
"*Windows Phone OS 7*" -
}
{
HTTP::redirect "http://desautels.mobilizeme.com"
}
}
}
Has anyone done something similar to this??
Thanks in advance
Chung