Where the structure is based on navigating down a hierarchy stored in a database and a user can remove a category level from the path to move back up the hierarchy.
I want to use this structure for an eCommerce site with the following example url:
Sounds like URL rewriting would be best. It should be fairly easy to rewrite something like ...
Code:
/nav/a/b/c/ -> /nav.aspx?location=a/b/c
So, if you're using .NET's interface, you can either use the "User friendly URL's" wizard, or manually set up a rule with the Match URL -> Pattern [using regular expressions] like ...
Code:
^nav/([^/]+)/?$
And an Action -> Rewrite -> Rewrite URL like ...
Code:
nav.aspx?location={R:1}
Then have nav.aspx break the location GET variable apart on the slashes and process accordingly.
Hi Vouzamo and Svidgen,
I am looking for a Software Developer in Illinois for a full time position at our company. Do either of you guys know of anyone looking for a company change in Illinois? I would appreciate any leads, thank you.
Bookmarks