04-Mar-2020 00:39
I have tryed to make an iRule, witch shoul remove some http::headers in the responce.
when HTTP_RESPONSE {
foreach header {"P3P" "p3p" "Server"} {
HTTP::header remove $header
}
}
the "Server" header is removed, witch indicates the iRule works... BUT the "P3P" is not ??
is it actual the LTM witch is setting the p3p header ? and why
is there any other way to remove it ?
it is actual present too times in the respond :
08-Mar-2020 10:40
Is it working with the " " ? I thought it should look like this
when HTTP_RESPONSE {
foreach header {P3P p3p Server} {
HTTP::header remove $header
}
}
Maybe try an Policy. Really simple to configure