Forum Discussion
sagar33_370912
Nimbostratus
Aug 31, 2018Combine irules to avoid http redirect error
ltm rule /Common/iRule_https_redirect_301 {
when HTTP_REQUEST {
HTTP::respond 301 Location https://[getfield [HTTP::host] ":" 1][HTTP::uri]
}
ltm rule /Common/iRule_Sitecore_Login_redirect...
youssef1
Cumulonimbus
Aug 31, 2018Hi,
you can try this:
when HTTP_REQUEST {
if { [string tolower [HTTP::uri]] eq "/sitecore/login$"} {
HTTP::respond 301 Location "[HTTP::host]"
}
if {[string tolower [HTTP::host]] eq "www.skyscapecollection.com"; }{
HTTP::respond 301 Location "https://www.homesbylendlease.co.uk/development/west-grove/?utm_source= skyscape_domain &utm_medium=redirects"
}
if { [string tolower [HTTP::uri]] contains "/_dev"} {
HTTP::redirect "http://[HTTP::host]/"
}
if { [string tolower [HTTP::uri]] contains "/sitecore"} {
HTTP::redirect "http://[HTTP::host]/"
}
}
Just keep in mind that i don't set the following rules (you risk having loop errors: tcl error):
HTTP::respond 301 Location https://[getfield [HTTP::host] ":" 1][HTTP::uri]
This rules have to be set on http vs in order to do a redirect in https. no in your App VS that already in https
Second point i replace "sitecore/login$" by "/sitecore/login$", you forget a slash.
if you give me more details of app i can optimise you this irule.
regards
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
