Создание URL-friendly строк (slug)
Tool guide
Feed it an article headline, a product name or a category label and get back a compact address such as how-to-pick-a-laptop-2026. You need one whenever a CMS would otherwise mint a numeric permalink, when you are hand-creating a page in WordPress, building catalogue URLs, or naming a git branch after a ticket title. The slug is computed by script on the page itself, with no round trip to any server. See also: transliterate a Russian headline into Latin, strip accents before building the address, percent-encode the query parameters.
Aim for three to five meaningful words, roughly 60 characters. Longer slugs are not penalised, but they get truncated in the SERP and look bad pasted into chat. Stop words such as how, the and for are usually deleted by hand after generating: how-to-choose-a-laptop reads better than how-to-properly-choose-yourself-a-good-laptop-this-year.
Browsers do accept non-Latin characters in a path via percent-encoding, and search engines index those URLs. But a copied link expands into a wall of %D0%BA sequences, which wrecks how it looks in ads, emails and signatures. Public pages are therefore normally transliterated — readable to a person and to whatever parses your logs.
Digits survive untouched, because they are often the point of the query — a model year, a screen size, a SKU. Dots and commas inside a number become hyphens, so 12.5 inch turns into 12-5-inch. Edit the output field by hand before copying if that bothers you.
No — the result field holds a single line, so one title is converted per run. For a hundred product names it is faster to drop the list into a spreadsheet and apply a formula there, and to use this page for individual pages and for checking what a given address will look like.
The tool knows nothing about your site and cannot detect collisions. Your CMS will resolve it, usually by appending -2 or by refusing to save. Rather than accept an auto suffix, disambiguate deliberately — add the year, the model or the city — so the two pages do not compete with each other in search.
No. A short script inside the page does the conversion, so draft headlines for unpublished material are safe to run through it. The page makes no network call carrying your text, and reloading the tab clears both fields.
Before: How to Choose a Laptop in 2026? The Full Guide!
After: how-to-choose-a-laptop-in-2026-the-full-guide
Before: DeLonghi KG 79 Coffee Grinder — 110 W, 12 cups
After: delonghi-kg-79-coffee-grinder-110-w-12-cups
Your rating and feedback help decide what to improve next.