URL routing is the process of mapping a URL to its content.

learn more… | top users | synonyms

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, ...
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 ...
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
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. ...
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 ...
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
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 ...
4
votes
2answers
2k views

Simulate file structure with PHP

I'm running PHP on a shared Apache web server. I can edit the .htaccess file. I'm trying to simulate a file file structure that is not actually there. For example, I would like for the URL: ...
6
votes
3answers
4k 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 ...
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
3answers
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 ...
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 ...
1
vote
2answers
1k views

Routing URLs in PHP

I'm currently working on a little web page project. I decided to use Apache (no idea of version), PHP (5.1.7, version imposed by my service provider) and Dwoo (templating) for this purpose. I'm ...
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 ...
3
votes
6answers
862 views

ambient values in mvc2.net routing

i have following two routes registered in my global.asax file routes.MapRoute( "strict", "{controller}.mvc/{docid}/{action}/{id}", new { action = "Index", id = "", docid = "" }, new { ...
2
votes
3answers
2k views

.htaccess and seo-friendly urls

We have an ecommerce site right now that carries a range of brands. The brand pages carry urls as follows: http://www.<DOMAIN>.com/catalog/brand/view?id=2 We need to utilize more friendly ...
1
vote
6answers
2k views

Dot character in ASP.NET MVC 3 route parameters

I have no custom routes in my application, only the default one. If i try to open localhost/myapp/controller/action/bla.bla it works fine on my machine (Windows 7 x32, both Cassini and IIS) but fails ...
4
votes
4answers
2k views

How to make ASP.NET Routing escape route values?

I have an ASP.NET MVC site where I want routes like /{controller}/{id}/{action}/{date}, where "date" is the mm/dd/yyyy portion of a date/time. (I'm dealing with time-dimensioned data, so I need both ...
4
votes
12answers
13k views

ASP.Net: HTTP 400 Bad Request error when trying to process http://localhost:5957/http://yahoo.com

I'm trying to create something similar to the diggbar : http://digg.com/http://cnn.com I'm using Visual Studio 2010 and Asp Development server. However, I can't get the ASP dev server to handle ...
1
vote
1answer
242 views

Relative Links with Extension-less URLs

I have an ASP.NET 4.0 application that implements URL routing. This gives me page URLs with no extension (e.g. /Articles/{title}) Some of these pages contain relative links. When I test the site from ...
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( ...
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 ...
5
votes
1answer
1k views

ASP.NET MVC3 routing REST services to controller

I want to route REST service url in the following way: /User/Rest/ -> UserRestController.Index() /User/Rest/Get -> UserRestController.Get() /User/ -> UserController.Index() /User/Get -> ...
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 ...
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 ...
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 ...
9
votes
2answers
970 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 ...
2
votes
1answer
942 views

How to detect language from URL in Sinatra

I have a multi-language website and I'm puting the language in the URL like domain.com/en/. When the user doesn't put the language in the URL I want to redirect him to the page in the main language ...
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 ...
6
votes
1answer
3k views

Ember.js - CRUD scenarios - Specifying View from within a Route

I've asked a question previously in which I wanted to bind a collection residing in the controller to the list scenario view, however, I've added details and edit templates and views to my structure ...
6
votes
3answers
1k views

Dynamic URL -> Controller mapping for routes in Rails

I would like to be able to map URLs to Controllers dynamically based on information in my database. I'm looking to do something functionally equivalent to this (assuming a View model): map.route ...
3
votes
1answer
4k views

Ember.js - How to properly bind a collection to a view using Ember.Router?

I was previously working with Ember.StateManager and now I'm doing some tests before I finally switch to Ember.Router, but I'm failing to understand how to properly bind my view data from the ...
7
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: ...
5
votes
3answers
2k views

URL helper in JavaScript

I'm using jQuery Lightbox for my image gallery. The URL for the button image is '../../Content/Lightbox/lightbox-btn-next.gif' That works fine if my URL is 'localhost/Something1/Somtehing2' If I use ...
5
votes
4answers
1k views

Django-like URL Routing for PHP

I am looking for a way to provide URL routing similar to one in Django. I looked at a lot of resources online & I liked cobweb but the problem is I dont want to use the entire framework I just ...
4
votes
3answers
3k views

PHP URL Routing, kind of like Django

I am trying to construct a regex based router for a MVC framework I am working on. I was very fond of the way Django handled urls in urls.py, and would like to create something similar. Does anyone ...
3
votes
4answers
3k views

Url Rewriting vs. Routing

I am making a making a new asp.net web forms site and would like to beautify my urls - I want to accept a url like this one "www.mysite.com/1-2,3" and turn it one like this ...
1
vote
4answers
562 views

username urls like twitter and facebook

how does twitter and facebook etc. make unique url eg. twitter.com/billgates if i would like to do the same (give my users unique urls with username), is it a application or do you crate a directory ...
5
votes
2answers
1k views

mvccontrib test helper and verifying http post routes and parameters

In my Asp.net MVC app, I have two methods on a controller, one for when the user first arrives on the view and then one when they submit the form on said view. public ActionResult Foo() {} ...
1
vote
3answers
12k views

Routing HTTP Error 404.0 0x80070002

I have created routing rules in my ASP.NET application and on my Dev machine at IIS7 everything works fine. When I deploy solution to prod server which has also IIS7 I get error 404 (page not found) ...
5
votes
4answers
2k views

CakePHP - How to do reverse routing with slug?

I am using CakePHP 1.3. I have a Product model. on the DB table among others there are id and slug fields. If I have a product that is id:37 and slug:My-Product-Title I want the URL for the product ...
4
votes
3answers
470 views

What is the opposite of url_for in Rails? A function that takes a path and generates the interpreted route?

Brain's a little fried....How do I get a hash of the :controller and :action from a relative_path? This is basically the opposite of url_for. in the example below, "some_function" is the mystery ...
2
votes
1answer
861 views

ASMX operation 404s, but ASMX service description doesn't, url routing issue?

So I've found myself with a conundrum. We have some old asmx web services in our app that have worked fine for ages. All of the sudden they stopped working on the build server (CI). I say stopped ...
2
votes
2answers
964 views

How do I rewrite URL's based on title?

This is a fairly open-ended question, and I'm just looking for the best possible avenue. Users can post links with titles. And I want my URL's for SEO purposes to display those titles. Much in the ...
1
vote
4answers
678 views

How do I ensure lower case URLs on POST?

I am trying to ensure that all URLs used to access my ASP.NET MVC site are lower case. In the event that an upper case letter is in the URL, I'm changing the status code to 301 and changing the ...
4
votes
1answer
542 views

Routing subdomains in Pyramid

In Pylons 1.0 I could go into config/routing.py and add map.connect('/', controller='index', conditions=dict(sub_domain=False)) map.connect('/', controller='mobileindex', ...
2
votes
1answer
226 views

Multiple Domains to One Dynamic Site

I am building a website for a company who has multiple users/sale people and each user needs their own website. What I want to accomplish is building one site that pulls in each users information ...
2
votes
3answers
4k views

MVC3 and Rewrites

I'm writing an MVC3 application that will need to make use of URL rewriting in the form of http://[server]/[City]-[State]/[some term]/ . As I understand it, MVC3 contains a routing engine that uses ...
2
votes
1answer
1k views

ASP.NET URL Routing with WebForms - Using the SiteMap

I'm trying to use Url Routing within my existing ASP.NET WebForms site. Thanks to: this link, I got it working. Now I'm trying to use a SiteMap along with my routing. I have a page MyReport.aspx. ...

1 2 3 4