Why is embedding key-value pairs into URLs (http://www.example.com/foo/bar) better?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dseals22
    New Member
    • Jan 2017
    • 74

    Why is embedding key-value pairs into URLs (http://www.example.com/foo/bar) better?

    Why is embedding key-value pairs into URLs (http://www.example.com/foo/bar) better than the traditional GET parameter syntax (http://www.example.com ?foo=bar)?
  • Niheel
    Recognized Expert Moderator Top Contributor
    • Jul 2005
    • 2432

    #2
    It helps simplify the design of the application.
    You can tell what it does just by looking at the URL structures.

    Also there are search engine optimization benefits to it.
    niheel @ bytes

    Comment

    • dseals22
      New Member
      • Jan 2017
      • 74

      #3
      @niheel Do you know where I can find more resources on this at? Can you compare the differences between embedding key-value pairs and the GET parameters in more detail? Examples of these comparison with a link source would be great.

      Comment

      Working...