I'm trying to figure out the best way to structure my URLs for articles. I want to keep a reference number at the start of the URL, like '12345', to avoid issues with truncated links. The page number will be at the end—like '/2' or '/3'. I'm also debating whether to use a dash or a slash to separate the reference number from the slug. What do you think is the best practice for 2025 when considering user experience and SEO?
2 Answers
For me, the first structure works best. The slug is mainly for readability, so I wouldn’t stress if it works without it. Just ensure both versions can function without issues. However, I prefer '/news/12345-slug-here/page/2', so it's clear when the page changes.
I personally prefer the first option. The second URL structure suggests there are multiple articles under '12345', which might confuse users. Keeping the reference number upfront also makes it clear.
Yeah, that's my thought too.
Agree, the first one is cleaner.

Interesting take on the '/page/2' format. I might need to consider that option.