Forum Discussion
Michael_Yates
Apr 06, 2011Nimbostratus
This is a simple version that does what you are describing that you need.
when HTTP_REQUEST {
if { [HTTP::path] equals "/" } {
HTTP::redirect "/somewhere/else.html"
}
}
If you are needing something in addition to this or different functionality let us know.