iRule: modifying the uri without a redirect
In this case the user wants to change the uri of a HTTP request without forcing a redirect from the client.
We have a unique situation where a client-based DLL is uploading a file to our...
Published Jul 27, 2005
Version 1.0Jul 23, 2008
Here you go:
when HTTP_REQUEST {
if { [HTTP::uri] starts_with "/support" } {
HTTP::redirect "http://newhost/newuri.ext"
}
}
-Joe