Questions tagged [rel-canonical]

rel-canonical is a way for specifying preferred URLs using link elements in HTML pages within the HEAD tag. It can help in situations where more than one page has duplicate content. {link rel="canonical" href="http://example.com"}

rel-canonical is a way for specifying preferred URLs using link elements in HTML pages. An example of such an element would be:

<link rel="canonical" href="https://example.com/preferred-url" /> 

It should be used in the <head> section of the webpage.

Canonical URLs can mitigate against ill effects of duplicate content. When two URLs have the same page, rel-canonical links can let search engines know which one should be indexed.

rel-canonical is just one implementation of s. The other way to implement canonical URLs is with s.

Google has a guide for implementing canonical URLs.

195 questions
0
votes
1 answer

Is this a good use case for rel=canonical

I have two pages with similar content with slightly different text for eg graduate degree vs masters degree. Logically they are same terms but users use these two different terms to search. If I have a page with content around Masters degree in…
vsingh
  • 201
  • 1
  • 7
0
votes
0 answers

"The good parts" for an existing collection

I have an existing collection at https://cjshayward.com which is everything I've created, and intended to be unfiltered. I want to set https://cshayward.com (no "J") to be a "The Good Parts" website. An implementation question I am facing is which…