URL routing is the process of mapping a URL to its content.
66
votes
19answers
28k 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 ...
24
votes
4answers
7k 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: ...
7
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
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 ...
7
votes
6answers
2k 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
875 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
14k 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
248 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
35k 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(
...
13
votes
2answers
16k views
Organize routes in Node.js
I start to look at Node.js. Also 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 works ...
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
2k 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 ...
12
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: ...
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
1k 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
985 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
28k 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 ...
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
570 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
2k 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
13k 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
3k 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
480 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
919 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
1k 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
690 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
557 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
232 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 ...

