I have a website that contains "items", that have an ID and title. They are divided into categories.
Category indexed are viewed at URL's like
example.com/tutorials
example.com/maps
What would be the best URL structure for the items themselves, from a SEO point of view and just 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
The category addition in the former is actual unneccessary. I only need the ID to find an item. However, I somehow feel the latter is better.
What do you think?