Dave_Wu_20200
Oct 24, 2011Nimbostratus
Removing Dot from URL
Hi Guys,
I am new in iRule and would need help on the following.
is accessable even by keying in
Is there anyway to remove the . statically?
Thanks
I am new in iRule and would need help on the following.
is accessable even by keying in
Is there anyway to remove the . statically?
Thanks
when HTTP_REQUEST {
if {[HTTP::host] ends_with "."} {
HTTP::redirect "http://[string trimright [HTTP::host] "."][HTTP::uri]"
}
}