0

I'm trying to migrate a website from on premise to AWS cloud. I want to keep the current site live and test the AWS hosted version as well.

The apps pseudo hostname is www.hostname.com to have a proxy with a hostname of www.b.hostname.com that takes the request and (transforms it) before going to www.hostname.com(in AWS) as if the request originally to www.hostname.com instead of www.a.hostname.com. Maybe I'm over thinking this, but I believe this can be accomplished with mod_proxy (reverse proxy?). I will generate a ssl certificate for www.a.hostname.com since the traffic must be over 443.

Could someone help guide me the right way to accomplish this?

Richard
  • 1
  • 1

1 Answers1

0

Maybe you can look into using mod_rewrite to update www.b.hostname.com to www.hostname.com

Reference: https://httpd.apache.org/docs/2.2/en/rewrite/proxy.html

Sithter
  • 91
  • 5