I would like to send all HTTP traffic from port 80 to an uploaded error page.
Ist this possible? If so, where do I configure this?
Thanks,jeff
Solved! Go to Solution.
If you wanted to send ALL traffic an uploaded error page, you could use the following request rule.
http.sendResponse( "200 OK", "text/html", resource.get( "error_page.html" ), "" );
Alternatively, This can be accomplished automatically when a problem exists AS AN ERROR PAGE using the contents of a file uploaded to the conf/extra resource folder. Select the error message using the configuration setting "error_file" under the Virtual Server Connection Management settings.
Also see Sending custom error pages
If you wanted to send ALL traffic an uploaded error page, you could use the following request rule.
http.sendResponse( "200 OK", "text/html", resource.get( "error_page.html" ), "" );
Alternatively, This can be accomplished automatically when a problem exists AS AN ERROR PAGE using the contents of a file uploaded to the conf/extra resource folder. Select the error message using the configuration setting "error_file" under the Virtual Server Connection Management settings.
Also see Sending custom error pages