Forum Discussion
iRule to redirect mobile browsers
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
3 Replies
- nitass
Employee
can you try this?when HTTP_REQUEST { if { [string tolower [HTTP::host][HTTP::uri]] 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" } } } }
- nitass
Employee
oops! sorry, user-agent value should be in lowercase.when HTTP_REQUEST { if { [string tolower [HTTP::host][HTTP::uri]] 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" } } } }
- chungyu_16122
Altostratus
Thanks for the quick response, I will give it a try.Regards
Chung
Recent Discussions
Related Content
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com