Reputation: 58
I have a website on square space with a domain example.com ,I want specific URLS to point to another host.
like
example.com/page1
example.com/page4
example.com/page8
to be in my new host but have the same domain.
How can I get this done?
Upvotes: 0
Views: 43
Reputation: 26955
To use the same domain and have multiple servers serving the content, something like:
example.com/page1 ---> host serving page1
example.com/page4 ---> host serving page4
..
If this is the case one quick way to achieve this is by using a CND, something like AWS CloudFront and defines multiple origins.
Every /path
can be an origin and all of them are server thought your main domain example.com
Upvotes: 1