Forum Discussion
Michael_Yates
Apr 06, 2011Nimbostratus
This is a simple version that will do the initial redirect.
when HTTP_REQUEST {
if { [HTTP::path] equals "/" } {
HTTP::redirect "/somewhere/else.html"
}
}
Let us know if this takes care of what you need or if you need anything else.