Forum Discussion
- hooleylistCirrostratusDo the two FQDNs resolve to the same IP address? If so, do you have a cert which is valid for both hostnames? If you do it would be fairly simple to redirect any request that isn't to the new FQDN to the new FQDN.
when HTTP_REQUEST { if {[string tolower [HTTP::host]] ne "new.example.com"}{ HTTP::respond 301 Location "http://new.example.com[HTTP::uri]" } }
- Colin_Walker_12Historic F5 AccountAnd yes, you'll need to decrypt on the LTM. ;)