Forum Discussion
simpsjy_181842
Nimbostratus
Sep 23, 2016Need help redirecting a mixed case URI
I am trying to redirect http://onestop.uc.edu/classes/ViewClassOfferings1.html to http://onestop.uc.edu/classes/ViewClassOfferings.html. But because of the mixed cased page name, Tolower and Toupper...
Kai_Wilke
MVP
Sep 23, 2016Hi Simpsjy,
if you're required to evaluate incomming HTTP requests with a [string tolower] syntax, then you have to make sure that your rule set is also defined with tolower formated syntax...
when HTTP_REQUEST {
if { [string tolower [HTTP::host]] equals "onestop.uc.edu" } then {
if { [string tolower [HTTP::path]] equals "/classes/viewclassofferings1.html" } then {
HTTP::redirect "http://onestop.uc.edu/classes/ViewClassOfferings.html"
}
}
}
Cheers, Kai
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)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