Forum Discussion
mfkk531_168091
Apr 17, 2015Nimbostratus
Question on Redirect to mobile website - plz help
I have been given an old iRule to implement now to redirect to mobile site. But i suspect there is some syntax errors. Can someone help me check the rule and see if its good, and will work for my req...
- Apr 18, 2015
Had an extra ] at the end of the third if statement. This should fix it for you.
when HTTP_REQUEST { if {[class match [HTTP::header User-Agent] contains abcd_useragents] } { if {[HTTP::cookie MobileOptOut] eq 1} { return } if {[URI::query [HTTP::uri] MobileOptOut] eq 1} { return } switch -glob [string tolower [HTTP::path]] { "*.jpg" - "*.gif" - "*.png" - "*.bmp" - "*.ico" { return } } HTTP::redirect "http://m.xyzdomain.com[HTTP::uri]" } }
Kevin_Davies_40
Apr 18, 2015Nacreous
If I was to refresh it would look like the below. The problem with the filetype match against HTTP::uri is if your URI is /page.jpg?value=1 it will fail to match, you need to match against HTTP::path which is everything up to the "?" in the URI. The return command below just mean to exit this irule.
when HTTP_REQUEST {
if {[class match [HTTP::header User-Agent] contains abcd_useragents] }
if {[HTTP::cookie MobileOptOut] eq 1} { return }
if {[URI::query [HTTP::uri] MobileOptOut] eq 1]} { return }
switch -glob [HTTP::path] {
"*.jpg" -
"*.gif" -
"*.png" -
"*.bmp" -
"*.ico" { return }
}
HTTP::redirect "http://m.xyzdomain.com[HTTP::uri]"
}
}
Recent Discussions
Related Content
DevCentral Quicklinks
* 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
Discover DevCentral Connects