Rel Tags Optimisation
Contents
Implementation
1 |
<link rel=“canonical” href=”http://www.example.co.uk/page/” /> |
Syntax
1 |
<link rel="value"> |
Types of Rel Tags
Value | Description |
alternate | Link to Alternate version of Document ( Eg : Print, PDF ) |
author | Link to Author |
dns-prefetch | preemptively perform DNS resolution |
help | Link to Help |
icon | Link to Icon |
license | Copyright information |
next | Next Document in Pagination |
pingback | Address of the pingback server |
preconnect | preemptively connect |
prefetch | preemptively fetch and cache for folloup navigation |
preload | preemptively fetch and cache for current navigation |
prev | Previous Document in Pagination |
search | Search Link |
stylesheet | Stylesheet to Import |
Other Rel Tags
1 2 3 4 5 6 7 |
rel="amphtml" rel="me" rel="canonical" rel="nofollow" rel="apple-touch-icon" rel="publisher" .... |
Rel AMP Html Tag
Marking up the AMP Page from a normal page
1 |
<link rel="amphtml" href="https://seomanageruk.com/amp-optimisation/?amp"> |
Marking up the Normal page From a AMP Page
1 |
<link rel="canonical" href="https://seomanageruk.com/amp-optimisation/" /> |
Rel Canonical Tag
1 |
<link rel=“canonical” href=”http://www.example.co.uk/preferred-version/” /> |
Rel Author Tag
1 |
<a rel="author" href="https://seomanageruk.com/author/praison/" >Mervin Praison</a> |
Note : Rel Author No longer Supported by Google
Rel Me Tag
1 |
<a rel="me" href="https://plus.google.com/+MervinPraison" >Mervin Praison</a> |
Rel Publisher Tag
1 |
<a rel="publisher" href="https://plus.google.com/+PUBLISHER_NAME" >PUBLISHER NAME</a> |
1 |
<a href="https://plus.google.com/+PUBLISHER_NAME?rel=publisher" >PUBLISHER NAME</a> |
Rel Nofollow Tag
1 |
<a rel=“nofollow” href=”http://www.example.co.uk/landing-page/” > Landing Page </a> |
- Search Engines won’t follow the link if it’s marked as rel nofollow
Rel Prev and Next Tag
- This is used for content Pagination
1 |
<link rel=“prev” href=”http://www.example.co.uk/landing-page/page/3/ ” /> |
1 |
<link rel=“next” href=”http://www.example.co.uk/landing-page/page/5/ ” /> |
Rel Icon Tag
1 |
<link rel="icon" href="/favicon.ico" type="image/x-icon"> |