מתי להשתמש
כשמישהו אומר: "SEO טכני", "Core Web Vitals", "האתר לא נסרק", "תכנן SEO", "Page Speed", "Schema markup", "Sitemap", "Crawl budget".
מקור / רקע מקצועי
- Google Search Central docs
- Search Engine Land, Moz Whiteboard Friday
- Screaming Frog, Sitebulb (כלים)
- Web.dev (Core Web Vitals)
הוראות עבודה
1. 6 קטגוריות לבדיקה
א. Indexability & Crawlability
- robots.txt — האם חוסם דפים חשובים?
- noindex tags — האם דפים שצריכים להיות מאונדקסים מסומנים noindex?
- Canonical tags — נכונים?
- Sitemap.xml — קיים, עדכני, מוגש ל-GSC?
- Crawl errors ב-GSC — 404s, 5xx, redirect chains?
ב. Site Architecture
- מבנה היררכי הגיוני (max 3 קליקים מהHomepage)?
- Internal linking — דפים מקושרים זה לזה?
- Breadcrumbs מוגדרים?
- URL structure ברור (no parameters spam)?
ג. Mobile-First
- Mobile-friendly test (Google).
- Viewport meta tag.
- Tap targets לא קטנים מדי.
- Font readable.
ד. Core Web Vitals (CWV)
| מדד | טוב | בינוני | רע |
|---|---|---|---|
| LCP (Largest Contentful Paint) | <2.5s | 2.5-4s | >4s |
| FID (First Input Delay) — מתחלף ל-INP | <100ms | 100-300ms | >300ms |
| INP (Interaction to Next Paint) — חדש 2024 | <200ms | 200-500ms | >500ms |
| CLS (Cumulative Layout Shift) | <0.1 | 0.1-0.25 | >0.25 |
ה. Schema Markup (Structured Data)
- Organization schema (אתר חברה).
- Article schema (בלוג).
- Product schema (eCommerce).
- LocalBusiness (אם רלוונטי).
- FAQ schema (סוגיות שאלות-תשובות).
- BreadcrumbList.
- Validate ב-Google Rich Results Test.
ו. HTTPS & Security
- HTTPS פעיל בכל הדפים.
- Mixed content (HTTP בHTTPS) — לא קיים.
- Security headers (CSP, HSTS).
2. Crawl Audit — Step by Step
Step 1: סרוק עם Screaming Frog
- 500 URLs חינם, או license $209/שנה.
- אסוף: status codes, titles, meta, H1s, canonicals, redirects.
Step 2: סרוק עם Google Search Console
- Coverage report — אילו דפים לא מאונדקסים? למה?
- Sitemaps — submitted vs indexed.
- Page Experience — CWV ברמה global.
Step 3: צלב data
- דפים ב-Sitemap שלא מאונדקסים → למה?
- דפים מאונדקסים שלא צריכים להיות → לסמן noindex.
3. תיקון Core Web Vitals
LCP (Largest Contentful Paint)
- תיקונים: דחוס תמונות (WebP), CDN, server response time, lazy load מתחת ל-fold, preload critical resources.
INP (Interaction to Next Paint)
- תיקונים: צמצם JavaScript (אסינכרוני, defer), Code splitting, מנע main thread blocking.
CLS (Cumulative Layout Shift)
- תיקונים: width/height על תמונות, Reserve space לads/embeds, font loading optimization.
4. Sitemap Best Practices
- כלול רק דפים canonical, indexable.
- חלוקה: pages.xml, posts.xml, products.xml.
- Sitemap index file לאיחוד.
- מקסימום 50K URLs / 50MB per file.
- הגש ל-GSC + ב-robots.txt (
Sitemap: https://...).
5. robots.txt — Best Practices
User-agent: *
Allow: /
Disallow: /admin/
Disallow: /private/
Disallow: /*?utm_*
Disallow: /search?
Sitemap: https://example.com/sitemap.xml
אל תחסום: CSS, JS, תמונות (Google רוצה לראות את הדף כמו משתמש).
6. Schema Markup — דוגמת Organization
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Acme Ltd",
"url": "https://acme.co.il",
"logo": "https://acme.co.il/logo.png",
"sameAs": [
"https://www.linkedin.com/company/acme",
"https://twitter.com/acme"
],
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+972-3-1234567",
"contactType": "customer service"
}
}
7. Hebrew SEO — Israeli Specifics
- RTL: לוודא ש-HTML
<html dir="rtl" lang="he">מוגדר. - Hebrew URL slugs: רוב הקנייני דומיין תומך — אבל transliteration לאנגלית עדיף ל-UX (קישורים ב-WhatsApp).
- Hebrew vs Arabic content — Audience targeting ב-hreflang אם רב-לשוני.
- Hebrew typography — fonts כמו Heebo, Assistant, Rubik (Google Fonts).
8. Common Issues — Top 10
- דפים תקועים ב-Crawled but not indexed.
- Duplicate content בין HTTPS / HTTP / www / non-www.
- Pagination לא מוגדרת נכון (rel=prev/next deprecated, להשתמש ב-canonical).
- Soft 404s.
- Redirect chains (3+ hops).
- Slow TTFB (Time to First Byte > 600ms).
- JS-rendered content שGoogle לא מצליח לעבד.
- Hreflang errors (multilingual sites).
- Mobile usability errors.
- Missing/duplicate H1.
9. Tools — Recommended Stack
| כלי | למה |
|---|---|
| Google Search Console | חינם, חובה |
| Bing Webmaster Tools | בנוסף |
| Screaming Frog | Crawler |
| Sitebulb | Crawler עם ויזואליזציות |
| PageSpeed Insights | CWV |
| Lighthouse | CWV + SEO + A11y |
| Ahrefs / SEMrush | Site audit + Backlinks |
| Schema Markup Validator | Validate schema |
10. אסיים בהמלצה.
קלט נדרש
| פריט | תיאור |
|---|---|
| URL האתר | לסרוק |
| גודל האתר | מספר דפים |
| פלטפורמה | WordPress / Shopify / Custom |
| הקשר עסקי | B2B/B2C/eCom |
פלט צפוי
| רכיב | תיאור |
|---|---|
| Audit summary | רשימת issues מסודרים |
| Priority matrix | Critical / High / Medium / Low |
| Quick wins | תיקונים ב-< 1 שבוע |
| Long-term roadmap | חודשים |
| Tools needed | רשימה |
| המלצה | פעולה אחת |
כללי עבודה
- פלט בעברית. מונחים מקצועיים באנגלית.
- Crawlability לפני Speed — חוקי הקודם.
- Mobile-first ב-2024+ — Google מסרק קודם mobile.
- CWV משפיע על rankings אבל פחות ממה שחושבים.
דגלים אדומים
- 🚨 דפים חשובים noindex — לא נראים בחיפוש.
- 🚨 robots.txt חוסם הכל — אתר נעלם מGoogle.
- 🚨 LCP > 6s — bounce rate גבוה.
- 🚨 Mixed Content — Browser warning.
- ⚠️ כל הדפים ב-Sitemap (כולל admin/login) — מבזבז crawl budget.
הערות חשובות
- Crawl budget — Google לא מסרק הכל בכל יום. צריך לאופטם.
- JavaScript SEO: SPA (React/Vue/Angular) דורש SSR/Pre-rendering.
- Cumulative tweaks: אין silver bullet, שיפורים מצטברים.
- המתן 30-90 יום אחרי שינוי טכני לראות impact ב-rankings.
פרומפט לדוגמה
אתר WordPress 5,000 דפים. CWV: LCP 4.2s. CR ירד. תכנן audit.
Shopify store, 2,000 מוצרים. Schema לא מוגדר. תאר את הסיכון.
SaaS landing page bottle-necks: 50% של הדפים noindex בטעות. איך לאתר?
© 2026 כל הזכויות שמורות | CMO Online Israel Pro גרסה: 1.0.0 | עדכון אחרון: מאי 2026