URL routing is the process of mapping a URL to its content.
71
votes
6answers
14k views
ASP.NET MVC Routing Via Method Attributes [closed]
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 ...
68
votes
2answers
17k 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 ...
65
votes
17answers
27k views
Simplest PHP Routing framework ..?
I'm looking for the simplest implementation of a routing framework in PHP, in a typical PHP environment (Running on Apache, or maybe nginx) ..
It's the implementation itself I'm mostly interested in, ...
34
votes
3answers
34k 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(
...
27
votes
2answers
2k 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 ...
24
votes
3answers
7k views
MVC.Net Routing
Here is my scenario. For the example lets say that I need to return a list of cars based on a search criteria. I would like to have a single View to display the results since the output will be the ...
22
votes
4answers
6k 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
21
votes
4answers
7k views
Preferred client side routing solution? [closed]
I am designing a one page browser based web application. JQuery is already being used in my application. I am currently planning to use KnockoutJS for data-binding and UI management. However I have ...
20
votes
5answers
1k 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 ...
16
votes
3answers
4k 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 ...
16
votes
4answers
15k 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 ...
16
votes
3answers
27k 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 ...
16
votes
4answers
4k views
How do I create multi-page applications with Meteor?
I am new to Javascript and just started fiddling around with Meteor out of curiosity. What really surprises me, is that it seems that all HTML content gets combined into a single page.
I suspect ...
15
votes
6answers
4k 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.
...
15
votes
9answers
7k 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 ...
13
votes
1answer
2k 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 ...
13
votes
2answers
4k 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 ...
11
votes
2answers
15k views
Organize routes in Node.js
I start to look at Node.js. Aslo I'm using Express.
And I have a question - how can I organize web application routes? All examples just put all this app.get/post/put() handlers in app.js and it ...
10
votes
4answers
17k views
Using routes in Express-js
So I'm starting to use Node.js. I saw the video with Ryan Dahl on Nodejs.org and heard he recommended Express-js for websites.
I downloaded the latest version of Express, and began to code. I have a ...
10
votes
3answers
5k 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 ...
10
votes
3answers
4k views
How can I make routes from a Rails 3 engine available to the host application?
I have a Rails 3 application with several engines containing additional functionality. Each engine is a separate service that customers can purchase access to.
I am, however, having a problem with ...
10
votes
4answers
153 views
rules to redirect to subdomain
Who defines the URLs to be redirected to the mobile version?
Lets take twitter as an example:
https://twitter.com -> redirect mobile
https://dev.twitter.com -> not redirect mobile
In an MVC ...
9
votes
4answers
2k 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 ...
9
votes
3answers
405 views
Including of files does not work as it should - url routing
My redirect process is showing some crazy stuff. The first part of the whole loop works just fine (if only the first element is typed in).
Possible url's look like:
www.site.com/category
...
9
votes
2answers
5k views
How to get RouteData by URL?
I need to get RoutData by given URL string in ASP.NET MVC application.
I've found the way that I need to mock HttpContextBase based on my URL string and then pass it to ...
9
votes
4answers
2k views
Understanding routing in Global.asax (asp.net-mvc)
In Global.asax what does the following signify?
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
9
votes
2answers
778 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
...
9
votes
7answers
2k 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, ...
9
votes
1answer
2k 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, ...
9
votes
1answer
5k views
How can I pass query string to backbone.js routing
I'm using Backbone.js and jQuery-mobile. jQuery-mobile routing is disabled and I'm using the lib only for UI. I got everything working, except selecting page transition. I need to pass the page ...
9
votes
5answers
5k 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 ...
9
votes
2answers
973 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 ...
9
votes
1answer
961 views
Zend Framework URL based translation routes
I am trying to implement URL based translation in Zend Framework so that my site is SEO friendly. This means that I want URLs like the below in addition to the default routes.
zend.local/en/module
...
8
votes
5answers
5k 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 ...
8
votes
3answers
3k views
Django - links generated with {% url %} - how to make them secure?
If I want to give an option for users to log in to a website using https:// instead of http://, I'd best to give them an option to get there in my view or template.
I'd like to have the link "Use ...
8
votes
3answers
5k views
Changing the base URL for Rails 3 development
I know I'm going to deploy to an environment with my application running with a base URL which looks like this:
http://someserver/mydepartment/myapp
My development environment is set up to use the ...
8
votes
1answer
2k views
How to defer routes definition in Angular.js?
I have configured some basic routes that are available for all users before they log in:
App.config(function ($routeProvider) {
$routeProvider.
when('/login', { templateUrl: ...
8
votes
2answers
2k views
Rails: Why does custom url change when `render 'new'` is called?
I have a controller that controls a contact us form on a contact page. Inside the routes.rb file I have a line that says match '/contact', :to => 'feedback#new'. Now when the form is filled out ...
8
votes
7answers
9k 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 ...
8
votes
3answers
4k 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 ...
8
votes
2answers
5k views
Web.config: Wildcards in location and authorization
In my ASP.Net application I'm using URL routing.
The url format is somewhat like: http://site/{culture}/project/{id}.
To allow users to visit the login and recovery page, I've added the following ...
7
votes
5answers
498 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
5k views
ASP.NET MVC Default URL View
I'm trying to set the Default URL of my MVC application to a view within an area of my application. The area is called "Common", the controller "Home" and the view "Index".
I've tried setting the ...
7
votes
3answers
10k 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 ...
7
votes
1answer
2k 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 ...
7
votes
1answer
2k views
Routing in subdirectory in Angular.js
Is it possible to develop an Angular.js application in a way that would be abstracted from the the web directory path in which it will be deployed?
I am trying to put an Angular.js app in a web ...
7
votes
6answers
1k views
ASP.NET MVC Url Route supporting (dot)
I hope that you can help me with the below problem.
I am using ASP.NET MVC 3 on IIS7 and would like my application to support username's with dots.
Example: http://localhost/john.lee
This is how my ...
7
votes
5answers
875 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 ...
7
votes
2answers
1k views
Encode URL with dot
I need to encode a url that contains a dot character ".". It's a ASP.NET MVC routing, but the url contains a ".". Is there a way?
For example, I'm trying to get this url: ...
6
votes
2answers
3k views
Rails REST routing: dots in the resource item ID
I have following in my routes.rb:
resources :users, :except => [:new, :create] do
get 'friends', :as => :friends, :on => :member, :to => "users#friends"
end
and following in my ...



