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

learn more… | top users | synonyms

3
votes
1answer
204 views

GAE: How to use unicode characters in url

I've just upgraded GAE to 1.7.6 (python 2.7). My app uses some spanish characters in URLs (words such as "españa" or "cádiz"). Up to this moment, I've had no problems dealing with them. However, after ...
0
votes
0answers
302 views

Url.Action parameters

I'm not able to prevent MVC from passing parameters to action url. Parameter code is passed to action index, even if I explicitly set it to empty string. Here is my set up: A new basic ASP.NET MVC 4 ...
0
votes
1answer
35 views

How to rewrite url in codeigniter

How can I rewrite a URL in codeigniter For example, I would like to rewite this URL: http://greenville.homes.sc/dev/demo_greenville/Community/Simpsonville/Stonewyck To something like this: ...
0
votes
1answer
86 views

Difference in RedirectToAction and ActionLink causing .post() not to work

I have application that redirect user to Index page of some controller from account controller using RedrirectToAction(), after login. RedirectToAction("Index", "MyController"); It redirects me to ...
0
votes
3answers
843 views

Codeigniter 2: The requested URL was not found on this server (404) error. CI isn't routing the right way

This is one of the most repeated questions, but I did not get it and had to ask. I use CI 2. I removed index.php from URL by following steps: In config.php I set $config['index_page'] = ''; ...
0
votes
1answer
366 views

Issue with simple HTTP requests with Laravel Routes.php

I am trying to get the most basic functionality to work on Laravel and am having a really hard time. I want the client to be able to send a request in the form of www.mysite.com/laravel/public/this ...
1
vote
3answers
120 views

if variable is equal to href insert class to link

I'm trying to create a nav that when the user is inside the page of the href of the link it has a color applied. So I searched and I think the best approach is to use: $url = $_SERVER['REQUEST_URI']; ...
0
votes
1answer
76 views

How to parameterize a SignalR route?

I would like to be able to configure the SignalR route to have an MVC-style route parameter like so: /{community}/signalr This will allow the signalr requests to parallel the rest of my ...
1
vote
0answers
252 views

RouteData.Values[“xxx”] generates error inside asp.net user Control

I am trying to update my asp.net webform based website to use Routing feature but i am failing to fix one error inside userControl.ascx. I can access query string value in main page using ...
0
votes
2answers
313 views

Route vs. Controller in Laravel

I was wondering about the best approach for laravel framework development. Most of the time and tutorials i go through, e.g: Laravel CodeHappy by Dayle, example as what you see here is the same with ...
1
vote
2answers
511 views

Spring MVC Pages HTTP Status 400 and Incorrect URL's

I am experiencing some issues with the application. I have a registration form which is post to another page from the controller this page displays the results of the query from the registration ...
0
votes
1answer
96 views

angular: load details in new page

i have angular behaviour outside a ng-view. how can i get open a new page where that view is then located in? <div ng-controller="JobCtrl"> <input type="hidden" ng-model="produktion" ...
1
vote
4answers
176 views

CodeIgniter URI Routing and empty segment

I now set uri routing in my codeigniter config like this $route['user/:any'] = "users"; and everything works fine with request like this http://localhost/user/1 but if i try request ...
3
votes
2answers
69 views

Users/Passwords in Rebol 3 Schemes

In the port spec below I'm attempting to parse a URL to determine user, pass, host and path. User/Pass values are optional, but I'd like to set default values for each if not present. However if the ...
0
votes
1answer
112 views

PHP Rest, .htaccess Routing

I'm using the REST API from this repo: https://github.com/marcj/php-rest-service/tree/master/RestService I'm running the REST service from a subdirectory /mydir. However, anything other than / does ...
0
votes
1answer
69 views

Google-App-Engine urls based on handlers and methods

Has anyone figured out an elegant way to do automatic routing in Google App Engine? I've ended up with a very long list of routes, i.e. urls = ...
1
vote
2answers
480 views

Adding url parameters in template using generic views in Django 1.5

I'm in the process of learning Django and currently I'm on a project following the Polls Tutorial loosely. Now I'm trying to convert to generic views and this is where I'm running into problems: ...
0
votes
2answers
522 views

ASP:NET MVC4 url routing for controllers with the same name in different namespaces

In my Asp.NET MVC4 web project, I have many controllers and I want to put them into subdirectories under the folder "Controllers". Some controllers will have the same name due to their major jobs, ...
0
votes
1answer
120 views

Asp.NET MVC 4 routing a spesific URL to a certain controller

I want to run a certain Asp.NET MVC 4 Controller when a url -probably irrelevant with the controller name- is entered. For example, if the user open the address "localhost:3364/abc/def", I want to ...
3
votes
3answers
190 views

How to create app-wide slug routing for Rails app?

I have a number of different models in the Rails app I'm working on. I've seen a number of sites use an app-wide slug routing approach. What do I mean by this? http://example.com/nick-oneill <-- ...
0
votes
4answers
280 views

How to set dynamic route to use slug in CodeIgniter?

Let's say that I have a controller named pages and there is a method slug_on_the_fly public function slug_on_the_fly($slug) How would my route for this look like? E.g. for blog controller it ...
-2
votes
1answer
149 views

Silex routing isn't working

I'm working on a Silex project and I am having trouble with routes. This works: $app->get('/', function () use ($app) { return $app['twig']->render('index.html', array()); }) ...
0
votes
1answer
52 views

can local or transient data be represented by URLs?

A bit of a theoretical questions, although it comes from a real world problem when creating various objects in a single page app without immediately persisting them (see link below). My question is ...
2
votes
1answer
79 views

How can I get my search query to show up in URL?

Using MVC 4 I have a partial view where I am creating a a search box. When the submit button is clicked it then passes the value of my search to the control to filter my groups. Everything filters ...
0
votes
0answers
115 views

url-routing routes -> redirect to localhost/xampp/

i wanted to add a kind of url-routing system to my project, read/watched tutorials and so on but everytime i get the same issue: im working with xampp and windows7 i access my project with ...
1
vote
2answers
149 views

Path not found error in Zend Framework

I have been getting this error in Zend framework when i want to run the static content , The error is like ///Not Found The requested URL /public/content/services was not found on this server. ...
0
votes
1answer
83 views

Complex urls in mvc views - who's responsible to construct them?

Lets say I need to create a search page. On that page there are: Complex search filter with many search parameters (param1, param2, ..., paramN) A list of result items A pager A layout switch links ...
0
votes
0answers
285 views

URL Routing / MapRequestHandler error for HTML page in IIS

In my localhost, I cannot setup working environment. I copied web.config from staging where everything is ok. I get error 404 for html page. Module IIS Web Core Notification MapRequestHandler ...
0
votes
1answer
85 views

Django Admin - Add using intermediary form

I had posted a question without any result. I fear it may be how I posed it... In the admin, I would like the Add button to direct the user to a different view than the normal form (that would simply ...
0
votes
2answers
214 views

Create Custom 301 Redirect Page

I am attempting to write a 301 redirect scheme using a custom route (class that derives from RouteBase) similar to Handling legacy url's for any level in MVC. I was peeking into the HttpResponse ...
1
vote
1answer
67 views

How can I get Advanced Url Routing parametres?

It works now like localhost/Controller/Action but I want it like localhost/MainFolder/SubFolder/Controller/Action because I need to get my MainFolder and SubFolder name; like RouteData routeData = ...
0
votes
1answer
12 views

How to detect current path?

I am developing my first standalone web-application and i faced the problem with routing. For example my index is located in sites/folder/folder/index.php, so url for it would be ...
1
vote
1answer
65 views

webforms routing multiple word

this is my routing pattern. routes.MapPageRoute("villadetail", "{sublocationurl}-bali-{villaurl}-details", "~/VillaDetail.aspx"); sample values: sublocationurl = "pemuteran" villaurl = ...
2
votes
2answers
601 views

How to have Express routing work with Angular routing with HTML5 style URLs?

I would like to make an AngularJS app with HTML5-style URLs (i.e. with no # fragment in the URL). Thus in the routing controller module of my Angular app I've got something like the following: ...
0
votes
1answer
121 views

Confusion of slug with route part “new” etc

I have a sfDoctrineRouteCollection: foo: class: sfDoctrineRouteCollection options: model: Foo columns: slug action: [list, show, new, create, edit, update, delete] If someone now ...
1
vote
1answer
109 views

Ember: unsaved models in dynamic URLs

I'm currently using the FixtureAdapter in my Ember app, but when I switch to the RESTAdapter, my URLs no longer work. The app is a scorekeeping type thing, and I want users to be able to log all the ...
0
votes
2answers
95 views

Error Loading Views After Changing Route Value of module.config.php - Zend Framework

This question is regarding Zend Framework application version: 2.1.3. I, the developer, am new to Zend Framework and would greatly value your assistance. I was making a module for a 'Donor Management ...
0
votes
0answers
39 views

Pre-select content via Query String

Trying to figure out how to pre-check the "Alberto VO5® (1)" under "Brands" via the URL string. As you can see "Personal Care Health & Pharmacy" is already in the URL. Any help is appreciated. :-/ ...
0
votes
1answer
270 views

Backbone.js: this.model is undefined

I've spent the past two weeks trying to learn Backbone.js and then also modularizing the app with Require.js. But seems there are something that I'm not getting in the whole process of initialization ...
0
votes
1answer
49 views

MVC need to generate an URL for outside application [closed]

I'm looking to generate an absolute URL/MENU as extension methods which redirects to other application like "www.yahoo.com"/"www.google.com". thanks Baaje
0
votes
2answers
96 views

In url routing named parameters are not found

I have a about us page url like below: base_url/cmsPages/index/cmsid:1 And in routes.php i have defined Router::connect( '/about_us', array('controller' => 'cmsPages', 'action' ...
1
vote
2answers
58 views

How to keep URL routing DRY

I want to have the option to have a route for UserName (which can change) and one for UserId. This way the user can gain the benefit of an easy to remember URL Users/{UserName} along with one that ...
2
votes
2answers
123 views

How to apply codeigniter's URL_TITLE value to the URL

I'm completely new to ci, I have a url something like this: http://localhost/mvc/post/prod_id/1 And I want it to be: http://localhost/mvc/post/my-best-product So far I'm able to manage to route ...
0
votes
1answer
128 views

bottle.py URL routing & reverse howto?

Sample Bottle.py code: @route('/show_<name>') def show(name): return '' My question is: Given a URL, how do we get the view function? E.g. the URL is /show_magic, I need to know the ...
0
votes
1answer
73 views

Django passing select url arguments to a view

Let's say I have a url which captures several argument. E.g: url(r'^(?P<l_slug>[-\w]+)/(?P<t_slug>[-\w]+)/(?P<event_id>\d+)/$', 'views.SomeView'), And in some cases, SomeView ...
0
votes
3answers
68 views

What meaning does the text in the URL have after index.php/

I am wondering what special meaning does text in the URL have after index.php/ So I would have an address like www.site.com/index.php/sometext Is it parsed as a GET parameter, or something else. I ...
2
votes
2answers
72 views

Dynamic redirecting pages in Django with regular expressions?

I have problem with url.py in django. In my app i have many urls like: aaa-2011-bbb aaa-2011 and i would like redirect these urls to new url without year. So i need remove year from url. Is it ...
1
vote
1answer
82 views

php mvc change default url pattern

I'm using yaf php framework I want to get param array. ex: My url:... mvcSample/svc/saveUser/user1/pass/a@b.c/joe/foo My output params dump: array (size=3) 'user1' => string 'pass' ...
0
votes
0answers
30 views

Routing & Linking Models

I have a these two models: rooms and scores in a CakePHP setup. rooms hasMany scores, and scores belongsTo rooms. The current default routing is as follows: /rooms/ /rooms/add /rooms/view/* ...
0
votes
0answers
46 views

Routing Mechanism: Take request & translation

What I'm looking to do is URL routing basically. That's one aspect of PHP I haven't used, though. Here's what I need to do, just as an example: Create a simple routing mechanism that takes a request ...

1 2 3 4 5 36