Generate SEO-friendly URL slugs from any text. Create clean, lowercase, hyphenated URLs that are optimized for search engines and human readability.
A URL slug is the part of a URL that identifies a specific page in human-readable form. SEO-friendly slugs are lowercase, use hyphens instead of spaces, remove special characters, and include relevant keywords. Good slugs improve click-through rates from search results and help search engines understand page content.
Slug = lowercase(remove_special_chars(replace_spaces_with_hyphens(trim(text))))Slug generation: 1) Convert to lowercase, 2) Remove accents/special characters, 3) Replace spaces with hyphens, 4) Remove consecutive hyphens, 5) Trim leading/trailing hyphens. Keep slugs short (3-5 words) and keyword-rich for best SEO results.
| Input | Output |
|---|---|
| How to Bake the Perfect Chocolate Cake | how-to-bake-the-perfect-chocolate-cake |
| 10 Best SEO Tips for 2024! | 10-best-seo-tips-for-2024 |
| L'article sur les cafés à Paris | larticle-sur-les-cafes-a-paris |