At work, we're trying to determine the effectiveness of domain collapsing for SEO purposes. Our current structure is to have multiple web apps served from different servers, such as

PUBLIC URLS - directly accessed by users
www1.somecompany.com/webapp1
www2.somecompany.com/webapp2
www3.somecompany.com/webapp3

I'm proposing to put an Apache proxy in front of these applications that will mask the different domains and route the requests to proper server

PUBLIC URL--------routed/forwarded to-----PRIVATE URL
www.somecompany.com/webapp1   <----->  www1.somecompany.com/webapp1
www.somecompany.com/webapp2   <----->  www2.somecompany.com/webapp2
www.somecompany.com/webapp3   <----->  www3.somecompany.com/webapp3

In terms of SEO/page rank value, does this help?

link|improve this question

60% accept rate
I believe the folks over here will be able to give you the best answers: webmasters.stackexchange.com – Chris Thorpe Oct 5 '10 at 20:15
feedback

1 Answer

The page rank value of each /webappN can be different, so you could just as well use subdomains and properly route each app to its own server via A records, without the need for proxying.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.