We have several clients who make it very difficult to launch landing pages on their websites - usually enterprise tech businesses with very strict access to their codebase and production site CMSs.
Therefore I'm exploring the possibility of using reverse proxies to allow us to build these pages on a WordPress instance on our own server, and depending on the path on the client site, show specific pages on our server.
For example:
www.client.com
is their live site that we can't get access to- Example URLs would be
/resources/page-1
,/resources/page-2
and/resources/page-3
- These would actually point to our server
/{clientName}/page-1
, etc - However, they'd need to appear to the user as though they are actually viewing
www.client.com/resources/page-1
We'd need this to work multiple clients, hence the {clientName} part of the path above.
The questions I have are:
- Is this even possible?
- What would be required from the clients' side in order to make this work?
- What further set up would be required from our side?
I'm not asking for full details of how to achieve each part, just a basic understanding of what is required for each, I will then look at how to implement the details.