Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
2k views

Menu path in Pathauto

How do I get pathauto under Drupal 7 to generate a URL alias by the full menu path?
3
votes
1answer
183 views

asp.net mvc routing with optional starting parameter

I'm starting a port of an existing ASP.NET Web Forms CMS to ASP.NET MVC and want to get the routing right from the start. Note: it isn't important to have the exact same URL structure. I think this ...
3
votes
2answers
199 views

RESTful Question/Answer design?

This is a toy project I'm working on at the moment. My app contains questions with multiple choice answers. The question url is in the following format, with GET & POST mapping to different ...
2
votes
2answers
46 views

Hierarchical vs. flat URL

I have a resource structure like flight > seat > reservation, so a reservation belongs to a certain seat which belongs to a certain flight: http://example.com/jdf_3prGPS4/1/jMBDy46PbNc ...
0
votes
3answers
41 views

Hierarchical RESTful urls still preferred - in terms of added overhead - over flat urls?

Let's say I have a website where users can upload and show their pictures. A RESTful url to a single picture of that user would look like: http://api.gallery.com/users/{user-id}/images/{image-id} ...