Reputation: 17
Let's say I have a website that is hosted on a traditional dedicated hosting:
This website has 'folders' like /area1, /area2, /area3, etc.
I'd like to host /area1 and /area3 on Windows Azure, and keep the other parts of the website hosted on my existing dedicated hosting.
Is it possible? How?
Upvotes: 0
Views: 480
Reputation: 33940
Subfolders will always be requested against the base host, you will not be able to serve content from the Azure instance without first hitting your www server. If you use subdomains on the other hand (like @CSharpRocks suggest) you will be able to configure separate DNS entries and thus direct traffic directly to the Azure web role without ever hitting your dedicated server.
Upvotes: 3
Reputation:
Not exactly what you're looking for but you can set a CNAME that points to a Web role. You'll end up having something like this:
Upvotes: 1