How can I rewrite a url like: /SomePage to /Pages/ShowPage/SomePage?
I tried:
routes.MapRoute("myroute", "{id}", new { controller = "Pages", action = "ShowPage" });
But It's not working. What am I doing wrong?
|
|
How can I rewrite a url like: /SomePage to /Pages/ShowPage/SomePage? I tried:
But It's not working. What am I doing wrong?
|
||
|
|
If you are trying to say "navigating to
This will only redirect the exact URL If this second case is indeed what you want, then you'll have to define it after most of your other routes. The routing entry you would want would be:
|
||
|
|
|
|
You can write your own static routing. Above the default route add your own.
Now, if SomePage is a variable, you'll want something like this:
You can leave out the {id} if you want, just leave it out of your action parameters.
|
|||
|
|
|
|
You need to ensure that your route maps to your objects. In your case, you need to have a controller called PagesController with a method called ShowPage, with a single parameter called pagename (if you use a route like the following).
Also, do not forget that you can use regex when specifying the route - this may help you ensure the correct route is used by the routing engine.
|
||
|
|
|
|
It was wrong because I think in your application, there is this default map route :
it will looks for the controller with the name equal to the id that you passed in, if you remove this default map route, your map route would work. You should try this route debugger tool, it helps out a lot: |
||
|
|
|
|
I think this should be:
|
||
|
Pageshave a methodShowPagewhich takesID as stringas argument? – Eduardo Molteni Nov 4 at 17:24