Forum Discussion
Request POST Header Rewrite of Origin and Referer
- Mar 09, 2022
when HTTP_REQUEST { if {[HTTP::method] eq "POST"}{ HTTP::header replace origin "http://123.abc.com" HTTP::header replace referer "http://123.abc.com" } else { return } }
This should do, but please test before installing.
Also, you should be able to achieve the same with an LTM policy, which is recommended because it is faster and more importantly is fully supported within configuration changes like an upgrade since syntax is standard.
iRule can be improved if you require support for multiple hosts
when HTTP_REQUEST {
if {[HTTP::method] eq "POST"}{
HTTP::header replace origin "http://123.abc.com"
HTTP::header replace referer "http://123.abc.com"
} else { return }
}
This should do, but please test before installing.
Also, you should be able to achieve the same with an LTM policy, which is recommended because it is faster and more importantly is fully supported within configuration changes like an upgrade since syntax is standard.
iRule can be improved if you require support for multiple hosts
- CraigBoMar 09, 2022Nimbostratus
Thanks, that worked perfectly!! I think I may have been trying to make it to difficult.
Recent Discussions
Related Content
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com