23-Jun-2020
12:22
- last edited on
04-Jun-2023
21:24
by
JimmyPackets
Hi,
I have a VIP:443 (www.old-domain.com) with its SSL certificate.
I have a new VIP:443 (www.new-domain.com) with its SSL certificate.
I new to put a policy to redirect from the old to the new:
actions {
1 {
http-reply
redirect
location tcl:https://www.new-domain.com[HTTP::uri]
For some reason it is not working.
Any suggestions? or better ideas than mine 🙂
Thank you and hope everyone is safe.
J
24-Jun-2020
01:28
- last edited on
05-Jun-2023
23:05
by
JimmyPackets
Hello Julio,
Strange behaviour, simple question 🙂 are you sure that:
You can also remove tcl and just validate redirection:
actions {
1 {
http-reply
redirect
location https://www.new-domain.com
meanwhile you can use an irule:
when HTTP_REQUEST {
HTTP::redirect "https://www.new-domain.com[HTTP::uri]"
}
keep me in touch.
regards
24-Jun-2020 06:42
Thank you for the suggestion. I will try the irule first - as I know that does not fails 🙂
Keep you posted.