URL routing is the process of mapping a URL to its content.
0
votes
0answers
48 views
Symfony2 prefix keys of imported routes
When importing routes in Symfony2, I know you can use prefix in the route declaration to prefix all of the paths of the imported routes:
foo:
resource: ...
0
votes
0answers
13 views
How to make an array and pass them as default value from url using zend routing
I have a following rule to handle a custom url for search page .
$route = new Zend_Controller_Router_Route_Regex(
'category/new-(1b-2b-3b-)item/search',
array('controller'=>'product',
...
2
votes
2answers
125 views
Executing a Yii module without a route
I have a module that is named article. It exists in the collowing folder:
- protected
- modules
- article
- controllers
ArticleController.php
...
1
vote
1answer
51 views
Using a slug in URL & ID to query DB in MVC
I am trying to use slugs in an MVC web application but can seem to work out the best way to implement them.
I have found the the recommendation on how to create the URL friendly slug stackoverflow ...
0
votes
0answers
356 views
Nginx Rewrite route to index.php Except /phpmyadmin AND url shortening / handling / splitting
Hi first question on stackoverflow :)
Im routing everything to index.php
so i can handle url shortening and internal routing there
tryed nginx rewrite all to index.php except whitelist no succes
my ...
1
vote
2answers
50 views
Why is my custom Error object converted to a String by the Express router?
I am using custom Error objects in node.js (0.8.12) with express (2.5.8). When errors occur, I want to route them to my custom error handler, but my custom Error objects are converted to Strings, ...
0
votes
1answer
118 views
Zend Framework 2 Routing Part of the action name based on route segment
Is there a way to set up a route in ZF2 (Segment or otherwise) so that /staff/list translates to the staffListAction() action in my controller?
Typically /staff-list translates to staffListAction. Is ...
3
votes
1answer
162 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
214 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
34 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
75 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
594 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
282 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
109 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
73 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
180 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
247 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
364 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
76 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
127 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
62 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
85 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
59 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
311 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
282 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
93 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
177 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
203 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
127 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
49 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
71 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
107 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
128 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
76 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
235 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
71 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
212 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
63 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
61 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
464 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
113 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
92 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
85 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
36 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
202 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
46 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
88 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
53 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
114 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 ...





