Forum Discussion
Anush
Nimbostratus
May 06, 2015rediecting site to different page but on same pool member..possible?
HI experts,
I am not sure whether it is possible or not. both sites are hosted on same pool member.
Thanks
4 Replies
- nitass
Employee
doesn't normal HTTP::redirect work?
HTTP::redirect
https://devcentral.f5.com/wiki/iRules.HTTP__redirect.ashx?lc=1 - Anush
Nimbostratus
Thanks Nitass for your comment. no normal redirect won't work since redirect site hosted on same backend pool member. Yesterday I had successfully implemented.
- when HTTP_REQUEST {
- log local0. "Request: [HTTP::uri]"
- if { [string tolower [HTTP::host]] equals "abc.com" && [HTTP::uri] equals "/default.aspx" } {
- log local0. "sending request to error_aspx"
- HTTP::redirect "https://abc.com/error.aspx"
- } else {
- log local0. "sending request to pool"
- pool abc.com
- }
- What_Lies_Bene1
Cirrostratus
Can't you just rewrite the URI? using HTTP:uri?
- What_Lies_Bene1
Cirrostratus
Exactly where you want to change the URI is unclear, so this is a guess;
when HTTP_REQUEST { log local0. "Request: [HTTP::uri]" if { [string tolower [HTTP::host]] equals "abc.com" && [HTTP::uri] equals "/default.aspx" } { log local0. "sending request to error_aspx" HTTP::uri "/error.aspx" } else { log local0. "sending request to pool" pool abc.com } }
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