When you design URL schema for your application, which rules you use?
- example.com/post/ or example.com/posts/ for list of posts
- example.com/post/new/ or example.com/post/create/ for new post
- example.com/posts/ + example.com/post/23/ or example.com/post/ + example.com/post/23/ for list and detail of post?
- example.com/post/23 or example.com/post/23/ for details
- example.com/post/edit/23/ or example.com/post/23/edit/ for editing.
I'm prefered: /post/ for list, /post/23/ for details, /post/23/edit/ for editing, just b/c I'm can very easy work with that URL by hand in browser location bar. I'm wrong? Suggest me, please.
Thanks.