Content Checks
Auditoro checks your content quality to ensure visitors and search engines can access all your resources without errors.
Broken Internal Links
Severity: Critical
Links on your pages point to other pages on your site that don't exist (return 404 or other errors).
Why it matters:
- User experience - Visitors hit dead ends
- SEO impact - Search engines may reduce trust in your site
- Wasted link equity - Internal links pass ranking signals that are lost on 404s
Common causes:
- Deleted or moved pages without redirects
- Typos in URLs
- Incorrect relative paths
- Case sensitivity issues (some servers)
How to fix:
- Update the link to point to the correct URL
- Create a redirect from the old URL to the new location
- Remove the link if the content no longer exists
- Restore the page if it was accidentally deleted
Example fix:
<!-- Before: broken -->
<a href="/old-page">Read more</a>
<!-- After: fixed -->
<a href="/new-page">Read more</a>
Broken External Links
Severity: Caution
Links pointing to external websites are returning errors. While you don't control external sites, broken outbound links affect user experience.
Common causes:
- External sites moved or shut down
- Temporary server issues on external sites
- URL structure changes on external sites
How to fix:
- Find a working alternative - Link to a different resource
- Remove the link if no alternative exists
- Link to archived version - Use archive.org for important references
- Monitor and wait - Sometimes external sites have temporary issues
Tip: For important external links, consider periodically checking if they're still valid.
Broken Images
Severity: Caution
Image URLs on your pages return errors. Visitors see broken image icons instead of your content.
Common causes:
- Images deleted from your server
- Incorrect file paths
- Hotlinking to external images that were removed
- Case sensitivity in filenames
How to fix:
- Upload the missing image to the correct location
- Correct the path if the file exists elsewhere
- Replace with a working image if original is lost
- Remove the image element if no longer needed
Spelling Errors
Severity: Advisory
Misspelled words were detected on your pages. While the impact is minor for SEO, spelling errors affect credibility and user trust.
How Auditoro detects spelling:
- Uses dictionary-based checking (Hunspell)
- Filters technical terms and code
- AI-powered false positive reduction
How to fix:
- Correct the spelling in your content
- Add to custom dictionary if it's a valid term (brand names, technical words)
- Mark as false positive if incorrectly flagged
Custom dictionary: For brand names, product names, or technical terms that aren't in standard dictionaries, add them to your custom dictionary.
Common false positives:
- Company/product names
- Technical terminology
- Proper nouns
- Abbreviations
- Non-English words
Redirect Chains
Severity: Caution
A link goes through multiple redirects before reaching the final destination. Redirect chains slow down page loads and dilute link equity.
Example of a redirect chain:
/old-page → /renamed-page → /final-page
Why it matters:
- Each redirect adds latency
- Search engines may not follow long chains
- Link equity is reduced with each hop
- Increases server load
How to fix:
Update redirects to point directly to the final destination:
# Before: chain
/old-page → /renamed-page → /final-page
# After: direct
/old-page → /final-page
/renamed-page → /final-page
In your server config:
# Instead of multiple redirects, go directly to final URL
location = /old-page {
return 301 /final-page;
}
JavaScript Console Errors
Severity: Caution
JavaScript errors were detected when loading the page. These errors may break functionality and indicate code problems.
Common causes:
- Syntax errors in JavaScript
- References to undefined variables
- Failed network requests
- Compatibility issues with browsers
How to fix:
- Open browser DevTools (F12) and check the Console tab
- Identify the error source - Note the file and line number
- Debug and fix the JavaScript code
- Test across browsers - Ensure fixes work everywhere
Impact:
- Broken interactive features
- Poor user experience
- Potential data loss
- Analytics tracking failures
Content Quality Best Practices
Beyond these automated checks, consider:
- Freshness - Keep content updated
- Accuracy - Verify facts and statistics
- Readability - Use clear, simple language
- Uniqueness - Avoid duplicate content
- Value - Ensure content serves user needs