I have a website containing "elements" that have an id and a title. They are divided into categories.
Category indexes are viewed by URL as
example.com/tutorials
example.com/maps
What would be the best URL structure for the elements themselves, in terms of SEO and only semantically in general?
example.com/tutorials/12/Make+a+php+site
example.com/maps/29/Inside+the+moon
or
example.com/12/Make+a+php+site
example.com/29/Inside+the+moon
Adding a category in the first is actually not necessary. I only need an identifier to find the item. However, I somehow feel that the first is better.
What do you think?
source
share