Orlixio

Text utilities

Create a clean URL slug

Start from the title, normalize text, remove noise, keep important words, and avoid changing the slug after publishing.

Goal: Turn a page title or heading into a reliable URL path segment.

Workflow steps

  1. Step 1

    Start with the final title

    Slugs should match the page topic. Avoid generating a slug from a temporary draft title.

  2. Step 2

    Normalize and hyphenate

    Lowercase the text, remove extra punctuation, normalize accents, and join words with hyphens.

  3. Step 3

    Keep it stable

    Changing published slugs creates broken links unless redirects are added.

  4. Step 4

    Review for privacy

    Do not put user emails, tokens, private IDs, or sensitive data in URLs.

Real examples

Title

How to Format JSON Online

Slug

how-to-format-json-online

Common pitfalls

Making slugs too long.

Changing slugs after indexing.

Leaving private identifiers in public URLs.