I have two sites running from the same instance of Sitecore: www.domainA.org www.domainB.com

Google has started returning links indexed from domainA.org that is actually content from domainB.com, for example:

www.domainA.org/sitecore/content/contentrootB/Destinations.aspx

(of course, contentrootB is the content root set in for domainB)

I've been looking all day trying to find where a /sitecore link is coming from on domainA and I haven't found ANYTHING. I've run Xenu and gotten nothing. Interestingly, I can HTTrack to copy down the HTML from domainA to my local machine last night and got a bunch of domainB content. But still not clue why that is happening. It's like there is a link that is only popping up for spiders.

Any clue/suggestion/tool I can use to track this down?

Sitecore version is 6.2 rev 100507.

link|improve this question

Please list your relevant config lines in the sites section of the web.config – Mark Ursino Apr 30 '11 at 1:21
I'm curious about your link structure above as it starts from the sitecore root, not the website's node root. Can you provide the details of your <site ...> nodes in the web.config? – Mark Ursino Apr 30 '11 at 21:29
Well, I'm curious about that too... :) I just sent you an email with details from my web.config. – Bryan May 2 '11 at 18:22
Interesting -- I responded. I'm now curious about how your LinkManager is configured, or how your code generates links. E.g. <sc:link ... /> or LinkManager.GetItemUrl() – Mark Ursino May 2 '11 at 19:20
feedback

1 Answer

up vote 1 down vote accepted

Most likely it's a sublayout or an xslt that both sites are sharing and has a hardcoded link to the home node of one of the domains.

I've had a similar issue. In our case we had an xslt for the 404 page that both domains were sharing. The xslt had a hard coded home node for domainB. So when domainA hit 404 it displayed the content fine but the links inside were pointing to domainB.

Hope that helps.

link|improve this answer
Thanks, that's a good suggestion. – Bryan Apr 30 '11 at 19:08
Finally tracked this down... you were correct. Turns out it was a combination of three factors. My dynamic nav menu had a badly formed link... and then this link was copied over to a static HTML page to act as the "friendly" asp.net error page... and then finally Sitecore's way-too-liberal item resolver which allowed www.domainA.com/domainB/page.aspx to be a valid link. – Bryan May 2 '11 at 21:26
Wow, good catch! – Mark Ursino May 2 '11 at 22:33
feedback

Your Answer

 
or
required, but never shown

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