1
vote
3answers
100 views
How to write a RESTful URL path regex in GAE/Python for n parameters?
Currently I have three URL paths that map to ServiceHandler. How do I combine the three into one neat regex that can pass n number of arguments to ServiceHandler?
(r'/s/([^/]*)', ServiceHandler),
…
0
votes
1answer
34 views
Google Search Result - URL mapping
Searching from google.com, like www.abc.com
Search Result Rank the pages like
Title.....
Description...
www.abc.com
Title...
Description...
www.abc.com/Aboutus.aspx
Title...
Description...
…
9
votes
5answers
418 views
Does the position of a slug in a URL matter?
FOR SEARCH ENGINE OPTIMIZATION PURPOSES, does the location of the slug within a URL matter?
There's no doubt that you could code URL slugs to work properly in any order. I'm more interested to know …
5
votes
6answers
400 views
Django, Rails Routing…Point?
I'm a student of web development (and college), so my apologies if this comes off sounding naive and offensive, I certainly don't mean it that way. My experience has been with PHP and with a smallish …
2
votes
1answer
265 views
Servlet/JSP URLs when forwarding requests
My web app has a servlet called admin which when navigated to checks if the user is logged in and if the are directs to the the admin section, but if they aren't it directs them to a JSP page with a …
