Developer-focused SEO utilities for crawl control, sitemaps, headers, redirects and safe indexation checks.
Practical checklist
- Keep sitemap URLs canonical, indexable and unblocked.
- Use robots.txt for crawl guidance, not private-data protection.
- Verify redirects with headers before submitting important URLs.
Tools
Generate a clean robots.txt file for crawlers, staging blocks, sitemap discovery, and simple SEO crawl control.
Open tool Sitemap Sitemap CheckerCheck pasted XML sitemaps for basic structure, URL counts, loc values, lastmod format and common SEO mistakes.
Open tool HTTP HTTP Headers CheckerAnalyze pasted HTTP response headers for cache, redirects, security headers and content-type issues without making server-side requests.
Open tool Nginx Nginx Redirect GeneratorGenerate Nginx redirect snippets for moved pages, HTTPS upgrades, and canonical host cleanup.
Open tool Apache .htaccess Redirect GeneratorCreate Apache .htaccess redirect rules for URL migrations, canonical host changes, and HTTP to HTTPS cleanup.
Open toolError fixes
A small Disallow rule can block valuable pages or rendering assets. Review robots.txt as a public crawl-control file, not a security layer.
Open fix JSON JSON Unexpected Token Error FixUnexpected token errors mean the parser found a character that is not valid at that position. Often the input is not JSON at all.
Open fix SSL SSL Certificate Expired FixAn expired certificate may be on the origin, CDN edge, www host or a forgotten subdomain. Check the exact host users visit.
Open fixExamples
A minimal robots.txt example for public websites. It allows crawling and points crawlers to the sitemap.
Open example Nginx Nginx 301 Redirect ExampleA narrow path redirect example for Nginx. Test syntax and Location headers before using permanent redirects widely.
Open example Apache .htaccess Redirect ExampleA basic Apache redirect snippet for one moved URL. Back up .htaccess before editing production rules.
Open exampleGuides
Use robots.txt for crawl guidance, not security. The safest workflow is to keep public pages and assets crawlable, block low-value paths, and verify the file from the domain root.
Read guide Sitemap XML Sitemap Indexing Checklist for DevelopersA useful sitemap contains canonical, crawlable URLs that return 200 responses. It should not be a dump of every route your application can produce.
Read guide Nginx Nginx 301 Redirect Workflow With Safe TestingRedirect changes are small but risky. A safe workflow generates a narrow rule, validates Nginx syntax, tests Location headers and keeps rollback simple.
Read guide