Skip to content

Latest commit

Β 

History

History
270 lines (189 loc) Β· 8.21 KB

File metadata and controls

270 lines (189 loc) Β· 8.21 KB

Post-Deployment SEO Checklist

Use this checklist after deploying your website to ensure all SEO implementations are working correctly.

πŸš€ Before Launch

1. Verify Site Configuration

  • Confirm your domain is accessible via HTTPS
  • Ensure www and non-www redirect to a single version
  • Test all pages load correctly
  • Verify mobile responsiveness on different devices

2. Update Configuration Files

  • Update any hardcoded URLs if using a different domain
  • Double-check metadataBase in app/layout.tsx matches your domain
  • Verify all absolute URLs in structured data are correct

πŸ“Š Immediately After Launch

1. Submit to Search Engines

Google Search Console

  1. Go to Google Search Console
  2. Add your property (both www and non-www if applicable)
  3. Verify ownership using one of these methods:
    • HTML file upload (easiest)
    • Meta tag (add to app/layout.tsx verification field)
    • Google Analytics
    • DNS record
  4. Submit your sitemap: https://www.bigjson.online/sitemap.xml
  5. Request indexing for your homepage

Bing Webmaster Tools

  1. Go to Bing Webmaster Tools
  2. Add your site
  3. Verify ownership
  4. Submit sitemap
  5. Import data from Google Search Console (if available)

Yandex Webmaster

  1. Go to Yandex Webmaster
  2. Add your site
  3. Verify ownership
  4. Submit sitemap

2. Verify Technical SEO

Robots.txt

  • Visit https://www.bigjson.online/robots.txt
  • Verify it's accessible and formatted correctly
  • Check that sitemap URL is correct

Sitemap

  • Visit https://www.bigjson.online/sitemap.xml
  • Verify all URLs are present
  • Check that URLs are absolute (not relative)
  • Ensure no 404 URLs are in the sitemap

404 Page

  • Visit a non-existent URL (e.g., /this-does-not-exist)
  • Verify custom 404 page appears
  • Check browser network tab shows 404 status code
  • Test navigation links work

Privacy Policy

  • Visit https://www.bigjson.online/privacy
  • Verify privacy policy page loads correctly
  • Check that it's accessible from footer links on all pages
  • Ensure content is accurate (update domain/contact if needed)
  • Verify page is in sitemap

3. Validate Structured Data

Use Google Rich Results Test

  1. Go to Rich Results Test
  2. Test these pages:
    • Homepage: https://www.bigjson.online/
    • Tool page: https://www.bigjson.online/tools/json-formatter
    • Blog post: https://www.bigjson.online/en/how-to-format-json (or any post)
  3. Verify no errors or warnings
  4. Check that Organization, WebSite, and WebApplication schemas are detected

Use Schema Markup Validator

  1. Go to Schema Markup Validator
  2. Enter your homepage URL
  3. Verify all schemas are valid
  4. Repeat for tool and blog pages

4. Test Hreflang Implementation

For blog pages with multiple languages:

  • Use hreflang Tags Testing Tool
  • Test a blog post URL
  • Verify all language alternatives are detected
  • Check for any errors or warnings

5. Performance Testing

PageSpeed Insights

  1. Go to PageSpeed Insights
  2. Test these pages:
    • Homepage
    • JSON Formatter tool page
    • A blog post
  3. Aim for:
    • Performance score > 90
    • Accessibility score > 90
    • Best Practices score > 90
    • SEO score = 100

Core Web Vitals

  • Verify LCP (Largest Contentful Paint) < 2.5s
  • Verify FID (First Input Delay) < 100ms
  • Verify CLS (Cumulative Layout Shift) < 0.1

6. Mobile-Friendly Test

  • Go to Mobile-Friendly Test
  • Test your homepage
  • Verify "Page is mobile friendly" result
  • Check screenshot looks correct

7. Security Headers Check

  • Go to Security Headers
  • Enter your domain
  • Verify you get an A or A+ grade
  • Check these headers are present:
    • Strict-Transport-Security
    • X-Content-Type-Options
    • X-Frame-Options
    • Referrer-Policy

πŸ“ˆ First Week After Launch

Monitor Search Console

  • Check Coverage report for indexing issues
  • Review Enhancement reports for structured data issues
  • Check Mobile Usability report
  • Monitor Core Web Vitals report

IndexNow (Optional but Recommended)

Your site already has IndexNow integration. After publishing new content:

  • Run pnpm run indexnow to notify search engines
  • Or manually submit via the API endpoint

Analytics Setup

  • Verify Microsoft Clarity is tracking (already integrated)
  • Consider setting up Google Analytics 4
  • Set up conversion tracking for tool usage

πŸ”„ Ongoing Maintenance

Weekly

  • Check Google Search Console for new issues
  • Monitor Core Web Vitals
  • Review search performance

When Publishing New Content

  • Verify new URLs are in sitemap
  • Submit new URLs for indexing via Search Console
  • Run IndexNow script
  • Check structured data is correct

Monthly

  • Review search rankings
  • Analyze traffic trends
  • Update content as needed
  • Check for broken links
  • Review and update meta descriptions if needed

Quarterly

  • Re-test all pages with PageSpeed Insights
  • Review and update outdated blog posts
  • Check competitor sites for improvements
  • Update copyright year (if in footer)

🎯 SEO Goals to Track

Short-term (1-3 months)

  • Get all pages indexed
  • Achieve 100 SEO score on PageSpeed Insights
  • Get rich results showing in search
  • Rank for primary keywords (brand name)

Medium-term (3-6 months)

  • Increase organic traffic by 50%
  • Rank on page 1 for "JSON formatter" related keywords
  • Get featured snippets for FAQ content
  • Build quality backlinks (at least 10)

Long-term (6-12 months)

  • Rank in top 3 for primary keywords
  • Achieve 1000+ monthly organic visitors
  • Get sitelinks in search results
  • Establish as authority in JSON tools niche

🚨 Common Issues to Watch For

Indexing Issues

  • URLs not indexed: Check robots.txt, ensure no noindex tags
  • Soft 404 errors: Make sure 404 page returns proper status code
  • Duplicate content: Verify canonical tags are correct

Performance Issues

  • Slow load times: Optimize images, enable caching
  • Poor mobile score: Test on real devices, fix responsive issues
  • Layout shift: Fix CLS issues in Core Web Vitals

Structured Data Issues

  • Missing required fields: Update schemas as needed
  • Invalid syntax: Validate JSON-LD
  • Type mismatches: Ensure data types match schema.org

πŸ“š Resources

Official Documentation

Testing Tools

Learning Resources


Remember: SEO is an ongoing process. Regular monitoring and updates are key to maintaining and improving your search rankings.

Good luck with your launch! πŸš€