Forum Discussion
VishnuGatla
Cumulonimbus
8 years agoIrule message show
Hi DC,
Is that possible to show the msg whoever coming from different URLs.
For example if anybody is coming from
https://dell.abc.com/hr-form/registration
https://dell.abc.com/h...
Samir_Jha_52506
Noctilucent
8 years agoYeah, we can make iRule to match phone browser's
User-Agent header & display message or redirect to webpage.
Example
when HTTP_REQUEST {
switch -glob [string tolower [HTTP::header User-Agent]] {
"*iphone*" -
"*android*" -
"*windows phone*" -
"*windows ce*" -
"*bada*" -
"*bb10*" -
"*blackberry*" -
"*symbinos*" -
"*symbain os*" -
"*symbian*" -
"*java*" -
"*winowsphone*" -
"*windowsce*" {
HTTP::redirect "https://[HTTP::host]mobile.aspx"
}
default {
HTTP::redirect "https://[HTTP::host][HTTP::uri]" }
}
}
Samir_Jha_52506
Noctilucent
8 years agoTry switch condition in iRule. Example.
switch -glob [string tolower [HTTP::uri]]
And add HTML syntax.
HTTP::respond 200 content { "Mobile PageSorry! This task is not available on the mobile app. Log onto your desktop to complete this task..."}
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