Hello,
I have migrated a old php/mysql site to ruby on rails, and had to keep the old link structure - not to break incoming links.
The structure look like this:
domain.com/artists/user1/seo-friendly-name-of-painting1
domain.com/artists/user1/seo-friendly-name-of-painting2
domain.com/artists/user1/seo-friendly-name-of-painting3
etc.
I thinking about adding a blog to each user-profile. What would be the best structure for adding this new feature? I see two possibilities:
Add the blog as a new main item, and link to the user that owns it. domain.com/blogs/seo-friendly-name-of-blog-title
Add the blog nested under the user: domain.com/artists/user1/blogs/seo-friendly-name-of-blog-title
I am worried about mixing the paintings with with the blogs resource - they will be at the same level. Hope I explained it good enough.
Best regards. Asbjørn Morell