TL;DR: Canonical tag אומר לגוגל "זו הגרסה הרשמית של הדף". קריטי כשיש URLs רבים עם content דומה/זהה. בעיה נפוצה: self-canonical לדף אחר, canonical chains, inconsistency.
מה זה Canonical
<link rel="canonical" href="https://example.com/page" />
אומר לגוגל: השתמש בזה כ-URL הראשי לדף.
מתי צריך
- URL parameters (?color=red).
- Pagination.
- Similar products.
- Print versions.
- Syndication.
- Multiple URL formats.
איך להגדיר
Self-canonical (most common)
דף רגיל. canonical לעצמו:
<link rel="canonical" href="https://example.com/page" />למה? גם אם גוגל זיהתה URLs נוספים (parameters), היא מבינה שזה הראשי.
Canonical לדף אחר
Duplicate content לדף אחר:
<link rel="canonical" href="https://example.com/main-page" />5 טעויות קריטיות
1. Canonical chain
A canonical ל-B, B canonical ל-C. גוגל לא עוקבת chain, עלולה להתעלם.
2. Canonical לדף עם noindex
Pointing to a page that shouldn't be indexed. Conflict.
3. Mixed signals
Canonical + 301 redirect באותו זמן. לא עובד.
4. Different domain canonical
Canonical ל-different domain יכול לגרום lost indexing. Only use for legitimate syndication.
5. Inconsistent format
Canonical ל-https://example.com/page, אבל ה-URL בפועל www.example.com/page/. Format mismatch.
איך לבדוק
- URL Inspection ב-GSC.
- Screaming Frog. canonical report.
- View source. מחפש rel="canonical".
Pagination
Old way (pre-2019): rel="prev" / rel="next". גוגל הפסיקה לתמוך.
New way: each paginated page self-canonical. Page 2 canonical to itself, not page 1.
Syndication
פרסום במקומות אחרים. canonical ל-original:
<!-- On Medium version -->
<link rel="canonical" href="https://yoursite.com/original" />Medium תומך canonical. LinkedIn articles לא (fully), Substack יכול.