SEO
Complete Technical SEO Checklist 2026: Is Your Website Healthy?
You can have the best content in the world, but if Google cannot crawl it, index it, or render it fast enough, you will not rank. Technical SEO is the infrastructure layer of your digital presence — the invisible work that determines whether your content ever gets seen by the audience it was created for. In 2026, with Google's AI Overviews, stricter Core Web Vitals enforcement, and mobile-first indexing as the baseline, technical SEO health is more consequential than ever for Indian businesses. This checklist is structured as a step-by-step audit protocol.
Phase 1: Crawl and Indexation Audit
1. Robots.txt Configuration
Access yourdomain.com/robots.txt. Verify:
- No
Disallow: /rule (this blocks the entire site — a devastating misconfiguration that often happens after development/staging; always check after site migrations) - Core service pages, product pages, and blog posts are accessible to Googlebot
- Parameter-based duplicate URLs (filter pages, session IDs, tracking parameters) are blocked if not using canonical tags
- Your Sitemap URL is declared:
Sitemap: https://yourdomain.com/sitemap.xml - Only disallow genuinely low-value directories:
/wp-admin/,/checkout/,/cart/,/account/
2. XML Sitemap Health
Access yourdomain.com/sitemap.xml. Verify:
- All important pages are included (check by comparing sitemap URL count against actual site page count)
- Only indexable pages are listed (status 200, not redirected or noindexed)
- Submitting the sitemap in Google Search Console (Coverage → Sitemaps)
- For large ecommerce sites (+10,000 URLs): use sitemap index files that reference separate sitemaps by type (product sitemap, category sitemap, blog sitemap, image sitemap)
- Image sitemap included if you rely on Google Images traffic (particularly important for ecommerce, photography, and food businesses)
3. Crawl Error Management
In Google Search Console → Pages → Reason reports:
- Not Found (404): These should be 301 redirected to relevant replacement pages. Every 404 with backlinks is losing ranking authority permanently
- Soft 404: Pages returning status 200 but with "no results" or minimal content. Google ignores these and counts them against your site quality
- Excluded by robots.txt: Verify these are intentional exclusions, not important pages accidentally blocked
- Crawled — Currently Not Indexed: These pages are crawled but Google decided not to index them. Investigate: is the content thin? Is there a noindex tag? Does the page have enough unique value?
- Page Indexing with issues: Review and action items from the Enhancements section (Schema errors, Core Web Vitals failures, Mobile Usability issues)
4. Crawl Budget Management (Large Sites)
For sites with over 5,000 pages, crawl budget — the number of pages Googlebot crawls per day — becomes a limiting factor. Preserve crawl budget by:
- Blocking low-value parameterised URLs (filters, sorting, pagination beyond page 2) via robots.txt or canonical tags
- Eliminating pagination depth beyond 3 levels (use infinite scroll with proper JavaScript rendering or paginated pages with rel="next"/rel="prev")
- Removing internal links to noindexed pages (they waste crawl budget on pages that will never rank)
- Consolidating near-duplicate content with canonical tags
Phase 2: Site Architecture and URL Structure
5. HTTPS and SSL Certificate
- All HTTP variants (http://yourdomain.com, http://www.yourdomain.com) must 301 redirect to the canonical HTTPS version
- Check for mixed content warnings (HTTP resources loaded on HTTPS pages): images, scripts, or stylesheets loaded over HTTP break the HTTPS connection indicator and can be penalised
- SSL certificate expiry monitored with automated renewal (Let's Encrypt auto-renews; commercial certificates require calendar reminders)
- HSTS (HTTP Strict Transport Security) header implemented after confirming all HTTP → HTTPS redirects are stable
6. URL Structure Best Practices
- Use hyphens as word separators (
/technical-seo-checklistnot/technical_seo_checklist). Google treats hyphens as word separators; underscores join words, losing keyword separation benefits - Keep URLs as short as possible while maintaining keyword clarity. Deeper nesting creates crawl depth problems
- Resolve www vs non-www permanently: choose one canonical version, 301 redirect the other, set the preferred version in Google Search Console
- Lowercase URLs everywhere. Mixed case creates duplicate URL versions
- No dynamic URL parameters in indexed pages (e.g., avoid
/?p=123&category=45for indexed content — use static, readable URLs)
7. Internal Linking Architecture
Internal links distribute "link equity" (ranking authority) from high-authority pages to deeper pages that need ranking support. Key principles:
- Every important page must have at least 3–5 internal links from relevant pages with appropriate anchor text
- Avoid orphan pages (pages with no internal links pointing to them) — Googlebot discovers pages primarily through internal links
- Use descriptive anchor text for internal links ("our technical SEO services" not "click here")
- Fix broken internal links (404s from internal navigation). Screaming Frog identifies all broken internal links in one crawl
Phase 3: Core Web Vitals — 2026 Targets and Fixes
8. LCP (Largest Contentful Paint) — Target: Under 2.5 seconds
LCP measures when the main content (typically the hero image or headline) becomes visible. The most common causes of poor LCP in India:
- Unoptimised hero images: Use WebP or AVIF format; compress to under 150KB for hero images; add
<link rel="preload" as="image" href="hero.avif">in the<head>to load the LCP image before other resources - Render-blocking resources: CSS and JavaScript loaded in
<head>that prevent browser rendering. Move non-critical CSS to async; defer non-critical JavaScript - Slow server response (TTFB): Time to First Byte above 600ms indicates server-side issues. Solutions: upgrade hosting (standard shared hosting is inadequate for performance targets), implement server-side caching, use a CDN
- No CDN: In India's geography, a CDN serving assets from a Mumbai or Singapore edge node dramatically reduces load times for users in Tier 2/3 cities
9. INP (Interaction to Next Paint) — Target: Under 200ms
- Long main thread tasks: JavaScript executing for more than 50ms at a time blocks the main thread. Use Chrome DevTools Performance tab to identify long tasks and break them into smaller asynchronous chunks
- Third-party scripts: Live chat, analytics, and advertising scripts frequently contribute to poor INP by hogging main thread time during user interactions. Load all non-critical third-party scripts with
asyncattribute - Large DOM size: Pages with 1,500+ DOM nodes slow interaction response. Simplify page structure; use CSS instead of JavaScript for visual effects where possible
10. CLS (Cumulative Layout Shift) — Target: Under 0.1
CLS measures visual stability — how much page content unexpectedly shifts during loading. The jarring "content jump" experience that causes misclicks is a CLS failure:
- Images without dimensions: Always specify
widthandheightattributes on<img>tags. Without dimensions, the browser doesn't reserve space; when the image loads, content shifts down - Ads and embeds: Reserve space for ad slots with CSS min-height; use skeleton placeholders for dynamically loaded content
- Web fonts: Fonts loading after text causes "flash of invisible text" followed by layout shift. Use
font-display: swapand preload key fonts - Dynamic content injected above existing content: Cookie banners, notification bars, and content-loading modules that push page content down create CLS. Use
position: fixedfor such overlays to keep them out of document flow
Phase 4: On-Page Technical Elements
11. Canonical Tags
- Every indexable page should have a self-referencing canonical tag:
<link rel="canonical" href="https://yourdomain.com/page-url/"> - Duplicate pages (ecommerce product variants, printer-friendly views, AMP pages) should canonical to the preferred URL
- Verify canonical chains (A canonicals to B, but B canonicals to C) — these reduce signal clarity. Ensure canonicals point directly to the final preferred URL
- Canonical and noindex should not be combined on the same page — a noindexed page cannot pass canonical signal
12. Redirect Management
- 301 (Permanent) for permanent URL changes — passes 90–99% of link equity to the new URL
- 302 (Temporary) only for genuinely temporary situations; using 302 for permanent redirects wastes ranking signal
- Eliminate redirect chains (A → B → C): each hop loses 10–15% of link equity. Ensure A redirects directly to the final destination C
- Eliminate redirect loops (A → B → A): immediately causes Googlebot to stop crawling those URLs
13. Structured Data (Schema Markup) — Full Type Reference
| Schema Type | Best Placement | SERP Feature Unlocked |
|---|---|---|
| Organization | Homepage | Logo, social profiles, sitelinks in Knowledge Panel |
| LocalBusiness | Contact page, homepage | Local pack eligibility, maps, opening hours in Knowledge Panel |
| Article / BlogPosting | Every blog post | Article Rich Result with date, author, image in Top Stories |
| FAQPage | Service pages, product pages, blog posts | Expandable FAQ accordion in search results (+100% SERP real estate) |
| Product | Product pages | Price, availability, star rating in search results |
| BreadcrumbList | All pages with breadcrumbs | URL breadcrumb path visible in search snippet |
| HowTo | Instructional blog posts | Step-by-step result with images in Search |
| VideoObject | Pages with embedded videos | Video thumbnail and duration in search results |
| Event | Event pages, webinar landing pages | Event date, location, and registration in Search |
Phase 5: Mobile Usability
14. Mobile-First Indexing Requirements
Google exclusively indexes the mobile version of your website. If your mobile site contains less content than your desktop site (a common problem in sites with separate m. subdomains or condensed mobile templates), you are not being indexed for that content at all:
- Ensure all text content, images, videos, alt tags, and structured data on desktop pages are present on mobile pages
- Font size minimum 16px for body copy (12–14px is unreadable on budget Android screens common in India)
- Tap target minimum 44×44px for all interactive elements (buttons, links, form fields)
- No horizontal scrolling at any viewport width
- No viewport meta tag with
user-scalable=no(prevents accessibility zoom)
Phase 6: AI Overviews (SGE) Optimisation — 2026 Specific
Google's AI Overviews (previously Search Generative Experience) now appear for a significant proportion of informational queries. Pages cited in AI Overviews receive dramatically increased visibility without necessarily moving in traditional organic rankings. Key optimisation principles for AI Overview citation:
- Direct answer structure: Place a clear, concise direct answer to the page's primary question in the first 100 words. AI Overviews extract these for direct citation.
- Marked-up FAQ sections: FAQPage schema helps Google's AI identify your page as containing structured answers to specific questions
- E-E-A-T signals: Author bylines with credentials, cited sources, publication dates, and company information all strengthen Experience, Expertise, Authoritativeness, and Trustworthiness signals that influence AI Overview source selection
Technical SEO Audit Tools
| Tool | Primary Use | Cost |
|---|---|---|
| Google Search Console | Indexing status, crawl errors, Core Web Vitals field data, Search performance | Free |
| Google PageSpeed Insights | Core Web Vitals lab and field data, specific optimisation recommendations | Free |
| Screaming Frog SEO Spider | Full site crawl: titles, meta, canonicals, redirects, broken links, schema detection | Free up to 500 URLs; ₹9,000/year unlimited |
| Google Rich Results Test | Validate structured data and confirm rich result eligibility | Free |
| Semrush Site Audit | Automated recurring technical audit with issue prioritisation and monitoring | Included in Semrush plans from ₹9,000/month |
| Ahrefs Site Audit | Comprehensive technical audit with crawl budget analysis | Included in Ahrefs plans from ₹7,500/month |
Frequently Asked Questions
What is the most important technical SEO factor?
Crawlability is the absolute prerequisite — if Googlebot cannot access your pages, no amount of content quality or link building will produce rankings. After crawlability, Core Web Vitals performance (particularly LCP on mobile) and proper canonical/indexation management have the highest measurable ranking impact.
How often should I run a technical SEO audit?
For sites under 500 pages: quarterly. For ecommerce sites with 500–5,000 product pages: monthly automated monitoring with quarterly comprehensive manual audits. For large ecommerce platforms (5,000+ pages): continuous automated monitoring via Semrush or Ahrefs Site Audit scheduled weekly, with monthly human review of flagged issues.
Does technical SEO affect content ranking?
Directly, yes. Core Web Vitals are a confirmed ranking signal. Mobile usability failures suppress organic rankings. Canonical implementation errors cause the wrong page version to rank. Proper schema markup improves CTR from search results. A fast, structurally correct site consistently outranks equivalent content on a slower, technically flawed site.
Conclusion
Technical SEO is not a one-time setup — it is ongoing maintenance that determines whether your website's content, backlinks, and brand investments translate into actual organic visibility. As your site scales, technical debt accumulates: broken links, crawl errors, duplicate content, and performance regressions appear regularly. Systematic quarterly audits using the phases in this checklist prevent those issues from compounding into significant ranking losses.
Chivalae's technical SEO service includes comprehensive site audits using Screaming Frog, Semrush, and Google Search Console — identifying and prioritising every technical issue by ranking impact, then implementing fixes systematically. Our development team handles the technical implementation while our SEO team monitors outcomes. Book a technical SEO audit from Chivalae.
Related: Website Speed Optimisation | Complete SEO Guide 2026 | Local SEO Guide 2026
Explore Our Services
Put your new knowledge into action. Our team of specialists is ready to implement data-driven strategies tailored to your business — get a free consultation today.