ASP.NET MVC - Mapping more than one query string parameter to a pretty url - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T08:54:52Zhttp://stackoverflow.com/feeds/question/417000http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/417000/asp-net-mvc-mapping-more-than-one-query-string-parameter-to-a-pretty-url4ASP.NET MVC - Mapping more than one query string parameter to a pretty urlTh3Fix3r2009-01-06T15:39:16Z2009-02-17T14:47:12Z
<p>I am a bit stuck on the design of my seo friendly urls for mvc....Take for example the following url:
<a href="http://myapp/venues/resturants.aspx?location=central&orderBy=top-rated" rel="nofollow">http://myapp/venues/resturants.aspx?location=central&orderBy=top-rated</a></p>
<p>With my mvc app i have mapped it as follows:
<a href="http://myapp/venues/list/resturants/central/top-rated" rel="nofollow">http://myapp/venues/list/resturants/central/top-rated</a><br>
{controller}/{action}/{category}/{location}/{order}</p>
<p>Now the only problem is that location and order are optional...so it should be possible to submit a request like: <a href="http://myapp/venues/list/resturants/top-rated" rel="nofollow">http://myapp/venues/list/resturants/top-rated</a> . This proves to be a problem when the request hits the controller action, the location parameter has picked up "top-rated", naturally.</p>
<p>Any suggestions? I' am considering using explicit querystrings to handle more than one parameter but this is really my last option as i dont want to sacrifice SEO too much.</p>
<p>Has anyone eles run into such dilemmas? And how did you handle it?</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/417000/asp-net-mvc-mapping-more-than-one-query-string-parameter-to-a-pretty-url/417038#4170380Answer by Sergio for ASP.NET MVC - Mapping more than one query string parameter to a pretty urlSergio2009-01-06T15:47:03Z2009-02-17T14:47:12Z<p>Why don't you create a property in the page for each possible querystring parameter?</p>
<p>This way you can handle it any way you choose with just a few lines of code...</p>
http://stackoverflow.com/questions/417000/asp-net-mvc-mapping-more-than-one-query-string-parameter-to-a-pretty-url/417054#4170542Answer by GalacticCowboy for ASP.NET MVC - Mapping more than one query string parameter to a pretty urlGalacticCowboy2009-01-06T15:51:55Z2009-01-06T15:51:55Z<p>You will always have this issue if you have multiple optional parameters. Either make one or both of them non-optional (and positioned earlier in the query string than the optional one) or use the querystring parameter notation.</p>
http://stackoverflow.com/questions/417000/asp-net-mvc-mapping-more-than-one-query-string-parameter-to-a-pretty-url/417168#4171685Answer by Todd Smith for ASP.NET MVC - Mapping more than one query string parameter to a pretty urlTodd Smith2009-01-06T16:18:23Z2009-01-06T16:18:23Z<p>Click on your <a href="http://stackoverflow.com/users/52065/wololo">profile link</a> and look at the URLs for Stats, Recent, Response, etc.</p>
<p>Examples:</p>
<ul>
<li><a href="http://stackoverflow.com/users/52065?sort=recent#sort-top">http://stackoverflow.com/users/52065?sort=recent#sort-top</a></li>
<li><a href="http://stackoverflow.com/users/52065?sort=stats#sort-top">http://stackoverflow.com/users/52065?sort=stats#sort-top</a></li>
</ul>
<p>with no sort it defaults to stats</p>
<ul>
<li><a href="http://stackoverflow.com/users/52065">http://stackoverflow.com/users/52065</a></li>
</ul>
<p><strong>Optional paramters should be query parameters</strong></p>
http://stackoverflow.com/questions/417000/asp-net-mvc-mapping-more-than-one-query-string-parameter-to-a-pretty-url/417241#4172411Answer by Giraffe for ASP.NET MVC - Mapping more than one query string parameter to a pretty urlGiraffe2009-01-06T16:36:22Z2009-01-06T16:36:22Z<p>Assuming that the allowed values for location and order are unique (i.e. when they come in, you can tell them apart, or else if they only supply one, how are you going to know if it's a location or an order?), then you could just take two parameters and work out what they are in the controller.</p>
<p>Route: <code>{controller}/{action}/{param1}/{param2}</code></p>
<p>Controller action:</p>
<pre><code>public ActionResult MyAction(string param1, string param2)
{
string location;
string order;
if (!ParseLocation(param1, out location))
{ ParseLocation(param2, out location); }
// ...
}
</code></pre>
<p>Not particularly elegant, but does let you have the URLs you want.</p>
http://stackoverflow.com/questions/417000/asp-net-mvc-mapping-more-than-one-query-string-parameter-to-a-pretty-url/420335#4203352Answer by Th3Fix3r for ASP.NET MVC - Mapping more than one query string parameter to a pretty urlTh3Fix3r2009-01-07T13:40:40Z2009-01-07T13:40:40Z<p>ok guys just posting a solution i've been playing with so far.</p>
<p>I have set up my routes using constraints as follows:</p>
<pre><code>
<pre><code> routes.MapRoute(
"VenuesList",
"venues/list/{category}/{location}/{orderBy}",
new { controller = "venues", action = "list", category = "", location = "", orderBy = "" },
new { location = "central|east|west|south", orderBy = "top-rated|price" }
);
routes.MapRoute(
"VenuesListByLocation",
"venues/list/{category}/{location}",
new { controller = "venues", action = "list", category = "", location = "" },
new { location = "central|east|west|south" }
);
routes.MapRoute(
"VenuesListByOrder",
"venues/list/{category}/{orderBy}",
new { controller = "venues", action = "list", category = "", orderBy = "" },
new { orderBy = "top-rated|price" }
);
routes.MapRoute(
"VenuesListDefault",
"venues/list/{category}",
new { controller = "venues", action = "list", category = "" }
);
routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = "" } // Parameter defaults
);
</code></pre>
<p></pre></code></p>
<p>The idea is that if the validation fails it will go to the next route in the list...eventually hitting the default.</p>
<p>Needs some more testing but has worked well so far...</p>
http://stackoverflow.com/questions/417000/asp-net-mvc-mapping-more-than-one-query-string-parameter-to-a-pretty-url/420401#4204010Answer by Kezzer for ASP.NET MVC - Mapping more than one query string parameter to a pretty urlKezzer2009-01-07T14:01:33Z2009-01-07T14:01:33Z<p>This is something I've been looking into also. I'd like to further ask a question to this actually because it's related, but not necessarily good enough to be a new question.</p>
<p>The navigation system we currently use at work is cross-compatible, so files in one menu system hook into another. We use frames to make this easier but obviously they're outdated by a long-shot and should've been deprecated years ago.</p>
<p>So we have two frames, the left is the navigation, the right is the content. On the left there may be a link to a file which is in a completely different directory, so using URL rewrites like this wouldn't work - or would they? Any ideas?</p>