Chris
Chris

Reputation: 539

Why do most of the people use routes with user id?

I was thinking about one thing. Because of what issued there are so many people who use user 'id' to maintaing operations on, like edit?

Example: I go to www.example.com/user/TestUser/edit to edit my user.

Isn't that better to make routes something similar to this?: www.example.com/user/edit

Upvotes: 0

Views: 31

Answers (2)

marc
marc

Reputation: 6223

Maybe look at REST to understand why URLs are constructed this way. In short: The URL http://www.example.com/user/marc is thought to represent the user himself.

Upvotes: 2

Francesco Belladonna
Francesco Belladonna

Reputation: 11689

I don't think there is an exact answer, however my idea is that www.example.com/user/edit should be normally used for administration pages to edit some user profile. Maybe that's the reason why it's not used in the way you explained.

Upvotes: 0

Related Questions