I'm building a web service which handles items for different countries. So far a request is something like example.com/item.php?country=us&id=1234
The idea is to rewrite these uri using friendly names. I'm thinking about two possible choices:
- us.example.com/1234
- example.com/us/1234
My preference is for #1 but I was wondering what would be the pros and cons of each. Admin access to the server wouldn't be an issue btw.
Thanks.