Turn any title or text into a clean, SEO-friendly URL slug instantly.
| Guideline | Why |
|---|---|
| Keep it short — 3 to 5 words | Long slugs get truncated in search results and are painful to share. |
| Use hyphens, never underscores | Google treats a hyphen as a word separator and an underscore as a joiner, so best_free_tools reads as one token. |
| Lowercase everything | Paths are case-sensitive on most servers, so /About and /about can serve as two different pages. |
| Drop filler words | a, the, and, of rarely add meaning and cost length. |
| Leave out dates and numbers | Putting /2026/ in a slug forces a redirect the moment you refresh the content. |
| Never change a live slug | Changing it breaks every existing link. If you must, add a 301 redirect from the old path. |
| Step | Example |
|---|---|
| Lowercase | Hello World → hello world |
| Fold accents to base letters | Café Münster → cafe munster |
| Remove punctuation and symbols | Hello, World! (2026) → hello world 2026 |
| Collapse whitespace to single hyphens | hello world → hello-world |
| Trim hyphens from both ends | -hello-world- → hello-world |
é has an obvious Latin base. Scripts with no Latin equivalent — Arabic, Chinese, Cyrillic, Hebrew — do not, and stripping them would leave an empty slug.Hyphens. Google treats a hyphen as a word separator and an underscore as a joiner, so best_free_tools is read as a single word while best-free-tools is read as three.
Three to five words is a good target. There is no hard limit, but search results truncate long URLs and they are awkward to share.
Generally no. A date in the URL makes the content look stale and forces a redirect if you ever refresh the article.
You can, but every existing link to the old URL will break. Always add a 301 redirect from the old slug to the new one, and expect a temporary dip in rankings.
They are folded to their base Latin letter — Café becomes cafe, Münster becomes munster — so the slug stays readable and safe in a URL.
They are not harmful, but they add length without meaning. Removing them usually makes a cleaner slug.
Only slightly and directly. Google has described words in the URL as a very small ranking factor. The larger benefit is clarity for people deciding whether to click.