url-design-guide

URL structure by site type — with examples of what good and bad looks like in practice.

Content Preview
# URL Design Guide

URL structure by site type — with examples of what good and bad looks like in practice.

---

## Universal URL Rules

Before the site-specific patterns, these apply everywhere:

1. **Lowercase always** — `/Blog/SEO-Tips` and `/blog/seo-tips` are different URLs. Always lowercase.
2. **Hyphens, not underscores** — Google treats hyphens as word separators. Underscores join words. `/seo-tips` not `/seo_tips`.
3. **No special characters** — No `%`, `&`, `#`, `?` in the path itself
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/url-design-guide.md \
  https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/marketing-skill/site-architecture/references/url-design-guide.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/alirezarezvani/claude-skills

Then reference at marketing-skill/site-architecture/references/url-design-guide.md

Related Skills