Explain Rel="canonical" attribute in HTML?

The rel="canonical" attribute is part of the HTML head of a web page and looks like this:

<head>...[other code that might be in your document's HTML head]...<link href="URL OF ORIGINAL PAGE" rel="canonical" />...[other code that might be in your document's HTML head]...</head>
 
Back
Top