Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.squirrelscan.com/llms.txt

Use this file to discover all available pages before exploring further.

Checks that URLs are lowercase
Rule IDurl/lowercase
CategoryURL Structure
ScopePer-page
Severitywarning
Weight4/10

Solution

URLs should be lowercase to prevent duplicate content issues. Most servers treat /Page and /page as different URLs, creating duplicates. Always use lowercase URLs and redirect uppercase variants. Configure your server or CMS to auto-lowercase URLs. This also improves URL consistency and readability.

Enable / Disable

Disable this rule

squirrel.toml
[rules]
disable = ["url/lowercase"]

Disable all URL Structure rules

squirrel.toml
[rules]
disable = ["url/*"]

Enable only this rule

squirrel.toml
[rules]
enable = ["url/lowercase"]
disable = ["*"]