Forum Discussion
Mike_Singer_599
Nimbostratus
Jan 11, 2012Removing server header from http to https redirect
We have been asked to remove this by a client based on a pentest. I can find referernces to the noserver option in other posts but not the complete irule that incorrpates that w/ the redirected comma...
Aapazmino1986
Altostratus
Jun 07, 2022Thank you Nikolay, I'll try with your info. Thks..
- Nov 28, 2019
Hi,
Can you try this?
when HTTP_REQUEST { if { ([HTTP::host] contains "syst3-my.test.co.uk") and ([string tolower [HTTP::path]] starts_with "/test/cs") } { if { not ([class match [IP::client_addr] equals private_net]) } { HTTP::redirect "https://syst3-my.testco.uk/test/home" } } }
HI Mate, thanks for your swift help really appreciate it.
wondering how do I match another URL path as well if I say host match syst3-my.test.co.uk and URL either starts with "/test/cs" or "/test12/cs"
thank you
- Nov 28, 2019
when HTTP_REQUEST { if { ([HTTP::host] contains "syst3-my.test.co.uk") and ([string tolower [HTTP::path]] starts_with "/test/cs" or [string tolower [HTTP::path]] starts_with "/test12/cs") } { if { not ([class match [IP::client_addr] equals private_net]) } { HTTP::redirect "https://syst3-my.testco.uk/test/home" } } }
If you want redirect for more path, you can use "switch" statement.