Forum Discussion
https to https redirection
- Dec 08, 2017
Redirection can be achieve by either F5 policy(V11.3 onward) or iRule.
- Policy is the best option to achieve this kind of redirection, same already discussed by @WithF5. In-fact F5 policy is good to explore in new era.
Option 2. Same can be achieve via iRule. iRule is already shared by devcentral Colleague. Did some modification in above iRule. Hope it will work for you.
when HTTP_REQUEST { if { ([string tolower [HTTP::host]] equals "page1.com") && ([TCP::local_port] == 443)} { HTTP::redirect "http://page2.com" } }
Redirection can be achieve by either F5 policy(V11.3 onward) or iRule.
- Policy is the best option to achieve this kind of redirection, same already discussed by @WithF5. In-fact F5 policy is good to explore in new era.
Option 2. Same can be achieve via iRule. iRule is already shared by devcentral Colleague. Did some modification in above iRule. Hope it will work for you.
when HTTP_REQUEST {
if { ([string tolower [HTTP::host]] equals "page1.com") && ([TCP::local_port] == 443)} {
HTTP::redirect "http://page2.com"
}
}
Thank you f5_rock, This works ! Great idea checking port, when 443 then apply redirect.
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
* 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
