Canonical URLs are an important concept in search engine optimization (SEO). They are used to indicate to search engines which version of a web page is the "preferred" version. This is essential when multiple URLs show the same (or very similar) content, because search engines like Google don't always know which version to index or display in search results.
What is a canonical URL?
A canonical URL refers to the URL that the website owner considers to be the "original" version of a page. This is indicated by using the
<link rel="canonical" href="URL">-
attribute in the HTML code of a web page.
For example:
Suppose you have an online store and the same product page is accessible via multiple URLs, such as:
- https://www.example.nl/product?kleur=groen
- https://www.example.nl/product
You can use a canonical tag to tell search engines that the second URL is the preferred version:
Why are canonical URLs important?
- Avoiding duplicate content: Search engines often consider pages with similar content as duplicates, which can lead to lower rankings. Canonical URLs solve this by making it clear which version should be indexed.
- Crawl budget optimization: Search engines have a limit on how many pages they crawl. Canonical tags help search engines work more efficiently by ignoring unnecessary duplicates.
- Maintaining Link Value: When external links point to different variations of a page, the canonical tag helps concentrate link value on the preferred version.
How do you use canonical URLs?
- In the HTML code: Add a <link rel="canonical" href="preferred-URL"> tag in the <head> section of your page.
- In a CMS: Most content management systems (like WordPress or Shopify) have plugins or built-in functions to set canonical URLs.
- Use absolute URLs: Make sure the full URL is used in the canonical tag (including "https://" and "www." if you use them), to avoid confusion.
- Correct application for pagination: For a series of pages, such as a multi-page blog, it is better not to use a canonical tag that points everything to the first page. Instead, use <rel="prev"> and <rel="next">.
Common mistakes
Setting the wrong URL as canonical: This can lead to loss of traffic and ranking.
Inconsistent URLs: Make sure your canonical tag points to the correct version (e.g. https:// and not http://).
Canonical URLs are therefore a simple yet effective way to improve your SEO and help search engines understand and show the right content. By implementing them correctly, you can avoid duplicate issues and optimize the visibility of your website.
Related Articles
Common HTTP Error Codes and Solutions
It can happen that your website suddenly becomes unavailable, with a three-digit error code on your screen. What now? We discuss the six most common HTTP error codes, what they mean, and how to fix them. 401 Error - Unauthorized A 401 error means ...
Set up mail
Set up email Your email can only receive and send emails if you have entered the correct information in the email settings. Without the correct information, it is difficult to use your email. That is why we are happy to provide you with the correct ...
Mcrypt is a thing of the past: here's what you need to do now
In 2017, PHP 7.2 will be released and with this new version, the outdated and unsafe PHP-Mcrypt module will disappear for good. Mcrypt has been discouraged for some time because it is no longer safe and reliable. However, some random samples show ...
SSH Tips for Professionals
SSH is one of the most used tools by us and by most developers. In this blog we share a number of tips that make SSH both more secure and efficient. These tips are not only applicable to our high performance web servers, but also to your own internal ...
The 404 Feeling – What To Do
We all know it: you click on a link and suddenly you see a 404 page – “Page not found”. This simply means that the page you were looking for does not exist (anymore). Very frustrating, especially if you just saw that one interesting link and wanted ...