Tagged Questions
URL routing is the process of mapping a URL to its content
59
votes
6answers
8k views
ASP.NET MVC Routing Via Method Attributes
In the StackOverflow Podcast #54, Jeff mentions they register their URL routes in the StackOverflow codebase via an attribute above the method that handles the route. Sounds like a good concept (with ...
27
votes
3answers
19k views
ASP.NET MVC URL Routing with Multiple Route Values
I am having trouble with Html.ActionLink when I have a route that takes more than one parameter. For example, given the following routes defined in my Global.asax file:
routes.MapRoute(
...
25
votes
2answers
987 views
How can I override a .svc file in my routing table?
I have this URL that was used from some JSON post back from the main website:
http://site/Services/api.svc/UpdateItem
We are in the process of updating the web site slowly to ASP.Net MVC 2 and ...
19
votes
2answers
3k views
Getting full URL of action in ASP.NET MVC
Is there a built-in way of getting the full URL of an action?
I am looking for something like GetFullUrl("Action", "Controller") that would return something like ...
19
votes
5answers
756 views
How do get clean URLs like Stackoverflow?
On some .NET driven sites URLs don't end with asp.net page names, like default.aspx, instead they use a pattern http://sitename.com or http://sitename.com/subdirectory/subdirectory. The site is mapped ...
18
votes
4answers
3k views
ASP.NET URL Rewriting
How do I rewrite URL's in ASP.NET?
I would like users to be able to goto http://www.website.com/users/smith instead of http://www.website.com/?user=smith
11
votes
4answers
10k views
How to ignore route in asp.net forms url routing
I am using the .NET 3.5 SP1 framework and I've implemented URL routing in my application. I was getting javascript errors:
Error: ASP.NET Ajax client-side framework failed to load.
Resource ...
10
votes
3answers
18k views
ASP.NET MVC - MapRoute versus routes.Add (and 404s)
I'm just getting started with ASP.NET MVC.
What is the difference between MapRoute and routes.Add ?
Should I just be using MapRoute? Can I map multiple routes? Which "maps" take precedence... those ...
8
votes
7answers
808 views
ASP.NET MVC to ignore “.html” at the end of all url
I am new to asp.net mvc and now struggling with url routing. I'm using asp.net mvc 3 RC2.
How can I create a url routing that IGNORES the very end extension in url. the extension can be: .html, ...
8
votes
5answers
2k views
ASP.NET Routing with Web Forms
I've read ASP.NET Routing… Goodbye URL rewriting? and Using Routing With WebForms which are great articles, but limited to simple, illustrative, "hello world"-complexity examples.
Is anyone out there ...
7
votes
1answer
677 views
URL building with Flask and non-unique handler names
Flask provides a url_for function to generate URLs to handlers based on the URL pattern. But this would imply that the handler functions must have unique names across the entire application. Is that ...
7
votes
5answers
2k views
ASP.net MVC support for URL's with hyphens
Is there an easy way to get the MvcRouteHandler to convert all hyphens in the action and controller sections of an incoming URL to underscores as hyphens are not supported in method or class names.
...
7
votes
5answers
292 views
Faking method attributes in PHP?
Is it possible to use the equivalent for .NET method attributes in PHP, or in some way simulate these?
Context
We have an in-house URL routing class that we like a lot. The way it works today is ...
7
votes
4answers
1k views
Understanding routing in Global.asax (asp.net-mvc)
In Global.asax what does the following signify?
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
6
votes
2answers
529 views
rails routing aliases
I have a model called Spaces which has different types of places... such as Bars, Restaurants, etc. It has the same columns, same, model, controller, etc. no fancy STI, I just have one field called ...
6
votes
1answer
1k views
asp.net MVC and RESTful routing, rails-style. Is it possible?
Is there any way to get truly restful routing working in MVC, just like the rails dudes have? I 'm talking about nested urls like /bands/metallica/albums/killemall/track/4
The only library that I ...
6
votes
3answers
1k views
How can you access RouteData from the code-behind?
When using ASP.Net routing, how can you get the RouteData from the code-behind?
I know you can get it from the GetHttpHander method of the RouteHandler (you get handed the RequestContext), but can ...
6
votes
3answers
2k views
Zend Framework Routing: .html extension
I know I've seen this done before but I can't find the information anywhere. I need to be able to route with .html extensions in the Zend Framework.
I.E. /controller/action.html should route to the ...
6
votes
3answers
7k views
Using Web.SiteMap with Dynamic URLS (URL Routing)
I would like to match "approximate" matches in Web.SiteMap
The Web.Sitemap static sitemap provider works well, except for one thing. IT'S STATIC!
So, if I would have to have a sitemapnode for each ...
6
votes
4answers
798 views
How to keep a website with url routing directory independent
I'm developing a PHP website that uses url routing. I'd like the site to be directory independent, so that it could be moved from http://site.example.com/ to http://example.com/site/ without having to ...
5
votes
2answers
137 views
MVC role-based routing
I have a project with 2 areas /Admin and /User.
Admin's default route is /Admin/Home/Index and user's default route is /User/Home/Index.
Is it possible to implement routing to make their home URL to ...
5
votes
2answers
123 views
Grails - hide the /index Action using Routes
What it is the correct way to hide the /index action using route in a Grails app?
I want to be able redirect to a controller: "profile", action: "index" but have the url look like
...
5
votes
5answers
237 views
Switching to {controller}/{id}/{action} breaks RedirectToAction
I am trying to use proper REST urls with MVC. To do that I switched default Routing from:
{controller}/{action}/{id}
to
{controller}/{id}/{action}
so instead of:
/Customer/Approve/23
there ...
5
votes
2answers
1k views
Auto-versioning in ASP.NET MVC for CSS / JS Files?
I have read lots of article on how to auto-version your CSS/JS files - but none of these really provide an elegant way to do this in ASP.NET MVC.
This link - What is an elegant way to force browsers ...
5
votes
4answers
471 views
How do I route images through ASP.NET MVC's routing?
I'd like to create a dynamic thumbnail resizer so that you can use the following URL to get a resized image:
http://server/images/image.jpg?width=320&height=240
I tried setting up a route like ...
5
votes
3answers
2k views
Rails: redirect all unknown routes to root_url
Whenever a user hits the wrong page, rails shows 404.html from the public folder. However, I'd like just to redirect the browser to the root page, without showing anything. So I tried globbing, but ...
5
votes
6answers
2k views
How do I get Route name from RouteData?
I have several routes defined in my Global.asax; now, when I'm on a page I need to figure out what is the route name of the current route, because route name drives my site menu. I can't find a way to ...
5
votes
2answers
739 views
ASP.NET MVC Routing / SEO Friendly URL
I'm trying to do something like stackoverflow
Take a link from stackoverflow for example:
http://stackoverflow.com/questions/9033/hidden-features-of-c
if you remove the last part
...
5
votes
1answer
442 views
Racket URL dispatch
I'm trying to hook up URL dispatch with Racket (formerly PLT Scheme). I've taken a look at the tutorial and the server documentation. I can't figure out how to route requests to the same servlets.
...
5
votes
3answers
207 views
Basic Ruby on Rails Question about routing
I have a controller without any related model. This controller is to span some information from various models. I have lots of actions there, which define certain views on the page. What would be the ...
5
votes
2answers
902 views
Getting ASP.NET MVC to correctly escape the # (hash/pound) character in routes
I've got a route that looks like this:
routes.MapRoute(
"BlogTags",
"Blog/Tags/{tag}",
new { controller = "Blog", action = "BrowseTag", viewRss = false }
);
And I create a URL using that route like ...
5
votes
1answer
1k views
How can I implement vanity URL's in a Rails application?
I want users to able to have a profile page at site.com/myNameHere. Rails looks for a controller named "myNameHere." Is it possible to setup routes.rb so that if the controller is not found, ...
5
votes
4answers
656 views
Internationalization and Search Engine Optimization
I'd like to internationalize my site such that it's accessible in many languages. The language setting will be detected in the request data automatically, and can be overridden in the user's settings ...
5
votes
1answer
2k views
Add a trailing slash at the end of each url?
I have a little problem here. I need to add a trailing slash at the end of each url in the site I'm working on. I defined all the links inside the site to have a trailing slash like so:
<a ...
5
votes
1answer
342 views
ASP.NET MVC URL Routes
In ASP.NET MVC, is it possible to define routes that can determine which controller to use based on the data type of part of the URL?
For example:
routes.MapRoute("Integer", "{myInteger}", new { ...
5
votes
1answer
736 views
TinyURL like routing with ASP.NET MVC?
I'm attempting to write a TinyURL like clone in ASP.NET MVC as a first project to get used to the framework.
The URL routing is still a little confusing for me, especially when I deviate from the ...
5
votes
5answers
358 views
ASP.NET webpages without names ? ala stackoverflow?
Mentioned stackoverflow only as an example, but if you look above the URL for ask is
http://stackoverflow.com/questions/ask
which means /ask is a subdirectory, but they also do this for the ...
5
votes
3answers
2k views
Generate a URL with URL Routing in Webforms
I know in the MVC Framework, you have the Html Class to create URLs:
Html.ActionLink("About us", "about", "home");
But what if you want to generate Urls in Webforms?
I haven't found a really good ...
5
votes
6answers
5k views
PHP Application URL Routing
So I'm writing a framework on which I want to base a few apps that I'm working on (the framework is there so I have an environment to work with, and a system that will let me, for example, use a ...
4
votes
2answers
383 views
asp.net mvc 3 areas and url routing configuration
I have problem with create ulr routing for asp.net mvc3 application.
My project has this structure :
Areas
EmployeeReport
Controllers
Report
Views
Report
List
....
Controllers
Login
...
4
votes
2answers
934 views
MVC3 URL Encoding?
ASP.NET MVC3/Razor.
I found that when I create an action link, say, like this:
@Html.ActionLink(product.Title, "Detail", "Products", new { id = product.ProductID }, null)
The MVC3 engine creates ...
4
votes
2answers
194 views
how to rewrite or generate url like twitter and facebook in java
how to rewrite or generate url like twitter and facebook in java....
Example : https://www.facebook.com/username, https://www.twitter.com/username
is there any java framework for this?
If anyone's ...
4
votes
1answer
515 views
How do I pass int array to RouteValueDictionary
I need generate this url: http://localhost:3178/Reports/?GroupId=1211&GroupId=1237
I'm trying:
var routeData = new RouteValueDictionary();
routeData.Add("GroupId", "1, 2");
getting: ...
4
votes
1answer
538 views
Captcha control not working with url-routing (ASP.NET 4.0 WebForms)
ASP.NET 4.0 C# WebForms
I have route.Ignore("{resource}.axd/{*pathInfo}"); in my global.asax for my ajax to work correctly.
The control is a "MSCaptcha".
It shows the path in sourcefile ...
4
votes
2answers
414 views
Is this how to use an MVC pattern in PHP OO
I am trying to build a nice PHP framework for personal use. I realize there are many existing but this is a great learning experience that covers a vast majority of different challenges and really ...
4
votes
3answers
402 views
Rails Nested Singular Resource Routing
I have a simple User model with a singular nested Profile resource so in my routes.rb I have:
resources :users do
resource :profile, :only => [:edit, :update, :show]
end
This generates the ...
4
votes
4answers
1k views
Dynamic routes with Rails 3
I have a task to develop a rails application following the model for routing.
I need to have PageController and Page model. Page urls must be like /contacts, /shipping, /some_page.
Also i need have ...
4
votes
1answer
325 views
Create short permalinks similar to Stack Overflow's “short permalink to this question”
I think I might already understand how this works, but wanted to be sure.
I am in the process of defining the routes for a new ASP.NET MVC application. I'd like to create short permalinks similar to ...
4
votes
2answers
107 views
How do I strip unnecessary information from a user friendly url before it gets to a controller action
We are trying to use custom routes in an ASP.NET MVC application to generate this url: 'http://example.com/Person/unnecessaryinfo-42'. The "unnecessaryinfo" is the name of the id which will make the ...
4
votes
2answers
457 views
How to correctly canonicalize a URL in an ASP.NET MVC application?
I'm trying to find a good general purpose way to canonicalize urls in an ASP.NET MVC 2 application. Here's what I've come up with so far:
// Using an authorization filter because it is executed ...