Forum Discussion
Benjamin_9120
Nimbostratus
Jun 08, 2010Return the custom error page to client
My customer want return the customization error page to client if all server is down that this virtual, and this page need built-in LTM.
How to achieve this feature use irules?
Michael_Yates
Nimbostratus
Jun 08, 2010The first two seem to have blown up during the first post:
when HTTP_RESPONSE {
if { [HTTP::status] == "403" } {
HTTP::respond 200 Loccation "http://www.customerrorpage.com"
}
elseif { [HTTP::status] == "404" } {
HTTP::respond 200 Loccation "http://www.customerrorpage.com"
}
}
Rather than sending the status codes you can use a 301 redirect:
when HTTP_RESPONSE {
if { [HTTP::status] == "403" } {
HTTP::redirect "http://www.customerrorpage.com"
}
elseif { [HTTP::status] == "404" } {
HTTP::redirect "http://www.customerrorpage.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
