I'd like to have the search ranking on my root domain to carry through to my blog subdomain. I'm not sure if this makes sense, but I thought perhaps 301 Redirect from mydomain.com/blog to blog.mydomain.com and having a canonical tag linking back to mydomain.com/blog would help.

For example: A user or search engine goes to mydomain.com/blog/my-post, a 301 redirect takes them to blog.mydomain.com/my-post. On that post is the link tag: rel='canonical' href='mydomain.com/blog/post'

Or, a better example would be someone links to blog.mydomain.com/post and that inbound link goodness gets transfered to mydomain.com. I'm not sure if this works in the other direction: ie a link to mydomain.com transferring link goodness to blog.mydomain.com

Thanks!

link|improve this question
feedback

1 Answer

What framework/language/CMS are you working with?

I guess you could dynamically add your canonical element

<!-- html from mydomain.com -->

%define_domain% = ( %define_domain% ) ? 'mydomain.com' : 'blog.mydomain.com'
%extra_goodness% = 'blog/my-post'


<meta name="canonical" content="%define_domain% / %extra_goodness%">
link|improve this answer
My question is not how to use the canonical tag but whether the system I outlined above is effective at transferring all link goodness to the same root domain. Again, mydomain.com/blog/post -> 301 redirect -> blog.mydomain.com/post which contains a canonical tag referencing the root domain – Jon Mahones Dec 18 '11 at 2:12
feedback

Your Answer

 
or
required, but never shown

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