Forum Discussion
Antony2015
Altostratus
May 13, 2014/URI is not working cpmpared to /URI/
I am working on LTM version 11.4.1 I got an issue when the users are trying to access the URL
https:///gtm --->it is not working. If we bypass F5 and try to access the individual server, I can ...
Kevin_Stewart
Employee
May 19, 2014If you do a client side capture going directly to the server with the "/gtm" URI, do you see it issuing a redirect to "/gtm/"? And do you see the complete and correct URL in this redirect?
Otherwise, you could either transparently change the URI:
when HTTP_REQUEST {
if { [string tolower [HTTP::uri]] equals "/gtm" } {
HTTP::uri "/gtm/"
}
}
Or explicitly:
when HTTP_REQUEST {
if { [string tolower [HTTP::uri]] equals "/gtm" } {
HTTP::redirect "http://[HTTP::host]/gtm/"
}
}
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