0
votes
2answers
27 views

@Route directive not working--what am I doing wrong?

I used composer.phar to install Symfony 2.2.1 standard edition, and then I used the app/console utility to generate a "ClientBundle". I'm trying to define my routes using the @Route annotation. ...
0
votes
1answer
27 views

Convention-based routing in Symfony2

I'm trying to learn learn how routing works in Symfony2, and so far everything I've read has examples like this: blog: path: /blog/{page} defaults: { _controller: ...
1
vote
1answer
152 views

Durandal Routing not working--am I missing a configuration setting?

I'm trying to get a Durandal app setup and I started with a very simple configuration with just two views. What's happening is that when I call router.navigateTo('#/welcome') or ...
0
votes
0answers
11 views

How to use asp route in a predefined and dynamic url

I'm currently using this rules to route our multilingual site. routes.Add("ar", new Route("ar/{*path}", new GlobalizationRouteHandler(CultureInfo.GetCultureInfo("ar-AE")))); routes.Add("nl", new ...
3
votes
1answer
375 views

MVC4 routing @Html.ActionLink and @Html.RouteLink producing wrong urls

Hi guys may be some one may help me to understand why @Html.ActionLink and @Html.RouteLink producing the wrong links in some cases. I have routes declared like that: public static void ...
-1
votes
1answer
75 views

Asp.net MVC Routing always to Root with parameters

Now, the question. I have an eCommerce website and I have a controller called Store with an action Index. When someone types www.mysite.com/sony, I want to route to controller Store and action Index ...
0
votes
0answers
25 views

ToroPHP - basePath & trailing slash

I am just testing out the ToroPHP routing system, and I like the simplicity of the service, but wondering about couple of things, and hopefully someone can help me out. This is my CODE: ...
1
vote
0answers
192 views

Symfony2: locale & subdomain host pattern in routing

I seem to have a missunderstanding in some aspects of the locale and subdomain pattern in Symfony2 routing. Why doesn't this work? routing_de: host: "dev.de.example.com" resource: ...
0
votes
1answer
28 views

MVC, how to avoid the Routing class from coupling with the Model?

I'm working on a Routing class in a MVC website. Some routes may contain a username : http://www.domain.com/John-Smith/ Others a tag : http://www.domain.com/Fun-Stuff/ The Routing class will ...
0
votes
0answers
30 views

ASP.NET development server: possible misconfiguration?

I'm facing a weird issue. I'm developing a website using C# and .NET 4, and I want to add routing service. After following several tutorials (unsuccessfully), I finally put myself in using an example ...
0
votes
3answers
581 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
58 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
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
104 views

Cakephp Passed arguments

Hello, my code is not working in CakePHP framework and it is showing an error message. URL: http://domainname.com/About/param1/param2 Code: class AboutController extends AppController { ...
0
votes
0answers
65 views

routing with just one of two parameters of controller

I have an actionresult with two parameter: public ActionResult Index(int a,string b) { //some code return View(b); } it creates this url automatically: ...
1
vote
1answer
31 views

Individual Share Url - Routing Issues

I have a custom shareable URL for every user in my app. This URL allows a user to share the Site and credits them for conversion. My issue is, that when I try to catch this route, I run into the ...
0
votes
1answer
74 views

How do you re-register routes for a specific user based on session varibales

lets sey when my application starts up I register the following route: website.com/slug -> page1.aspx but how can i re-register that route like so: website.com/slug ->page2.aspx I know I can clear ...
0
votes
0answers
62 views

How can I get MVC to stop sucking regarding slashes in route values?

I have a route like this: routes.MapRoute( "View Blob", "browse/{repo}/blob/{object}/{*path}", new { controller = "Browse", action = "ViewBlob", path = UrlParameter.Optional }); When I ...
0
votes
0answers
29 views

Is it possible to use client-side routing techniques in Facebook apps?

I would like to use client-side routing/deep-linking in my Facebook app. I am using the director routing library (but that shouldn't matter, the idea is the same whatever system I use) to achieve ...
1
vote
1answer
197 views

ASP.net WebForms Extensionless URLs

I understand that in ASP.net 4.0 URL Routing has been incorporated into Web Forms. It is great that I can do something like this: void Application_Start(object sender, EventArgs e) { ...
0
votes
1answer
773 views

Routing URLs with language in Laravel

i have a web and a I want to add a localization. Currently my routes.php looks like Route::controller('browse'); Route::controller('search'); Route::controller('support'); ...
0
votes
1answer
95 views

Zend routing without controller and action

There are given article URLs in a database (e.g. "article1", "article2", "article3"). When I type www.example.com/article1 I want to route to controller: index, action:index. My route is: ...
0
votes
1answer
147 views

Handling return URLs with ASP.NET Web Forms and Routes

I have an ASP.NET web forms application (not MVC) set up utilising routes which are defined in my Global.asax file like so; routes.Add("Login", New Route("login", New ...
0
votes
1answer
115 views

Asp.net Route /something/{any url} to /{any url}

This thing is driving me mad: browser url -------> phisical path http://somedomain/routeName ----> ~/Default.aspx WORKS http://somedomain/routeName/anypage.aspx ----> ~/anypage.aspx WORKS ...
0
votes
2answers
88 views

How to control url in mvc3

I use the default LogOn model of MVC3. LogOn partial view is in Layout view. @Html.Partial( "~/Views/Home/LogOn.cshtml", new MyProject.Models.LogOnModel() ) After log on, Url is: ...
0
votes
1answer
164 views

routes singular controller name

I think Routes class is really powerful.. And we create many URLs structures with it. (but I don't know how :( ) I'm a beginner.. How can I change plural controller names in URLs? for example change: ...
0
votes
0answers
99 views

Intermittent ASP.NET WebForms routing error

I'm having a strange issue in my production website, which pops up somewhat consistently but with no known pattern. My app consists of two websites, one of content which lists courses which the user ...
0
votes
2answers
173 views

Routes.Ignore not working

I am using url routing structure for my web site.When i use url routing (especially multi segment) my css and js file not load.i used Route.Ignor but not work. void RouteMap(RouteCollection route) { ...
0
votes
1answer
184 views

CodeIgniter routing when routing url starts with variable

I am getting problem on codeigniter routing when routing url starts with variable like following - $route['(:any)/(:any)'] = "home/index/0/N/DealsAmount/ASC/$1/$2"; i can to able to configure ...
2
votes
1answer
166 views

MVC Areas and routing issue

I'm having some issues getting Areas working correctly within MVC 3. I have the following folder structure and an Admin area set up: I'm trying to navigate from the admin page (Index) to the the ...
0
votes
0answers
127 views

URL Routing method for core php

I have web site in core php and I want to make my SEF URL. In my web site for transferring control from one page to other i have used something like header("Location: edit.php?id=12"); I read ...
0
votes
0answers
80 views

routing, User has many Models, Model has many Users

I can't get my head around how to route something like this. User has many Scoreboards (via created_by in scoreboards), Scoreboard has many Users through scoreboard_userships. Using stringex gem ...
0
votes
1answer
280 views

how to set routing for the url with multiple parameters in symfony?

I am using symfony 1.0 and have set routing for few URLs as below. static_pages: url: docs/:page.htm param: { module: docs, action: index } Now, I have set routing for a different kind of URL. URL ...
2
votes
1answer
80 views

Can I specify names for the elements of params hash in rails project (like ':name' instead of ':id' )?

My routes.rb: Temp::Application.routes.draw do resources :categories, path: '', only: [:index] do resources :entries, path: '', only: [:index, :show] end end This results in the following ...
1
vote
0answers
133 views

ASP .NET MVC 3 routes to implement a “coming soon” page functionality, hiding certain areas and controllers

The page I am no implementing is in a "coming soon" stage. Some elements are not available yet, except for the informative part. I need to make navigation to a 'ClientPanel' area and the Account ...
0
votes
1answer
154 views

rails 3 route path building issue

I have such route: scope ':property', :constraints => { :property => /inv|um|tm|pp/ } do resources :user_templates do member do get 'download/:idcreated', :action ...
3
votes
3answers
7k views

set url param in redirect zf2

I have following redirect script in my controller (Zend Framework 2) return $this->redirect()->toRoute('default', array( 'controller' => 'admin', ...
0
votes
1answer
214 views

Kohana 3.2 - How do you send variables whith your routing?

I have the following route set at the end of the route list for my site which allows a final check on the uri value to provide my site users with a vanity URL (http://example.com/username) ...
1
vote
1answer
1k views

CodeIgniter routing not working

I am having problems with my routing. My default controller (mysite.com) will work, but if I try anything else (e.g. mysite.com/dashboard), it goes to a server based 404, not a CodeIgniter one. It's ...
0
votes
2answers
160 views

Setup file-system based routing in Node

I'm really a fan of the simplicity PHP offers in serving pages, everything is based on the filesystem. I want to do the same thing with Node. I tried one routing setup that worked like this for views, ...
0
votes
2answers
312 views

Ignoring routing for .asp pages Asp.Net 4.0 routing

I have this MapPageRoute in my global.asax: RouteTable.Routes.MapPageRoute("TestPages", "{file}", "~/Test/{file}"); It basically says if request comes for any file it goes to Test folder. However I ...
2
votes
1answer
162 views

ASP.NET Routing: Formatting the URL string

I have implemented a routing functionality successfully in my project (a news website): Sub RegisterRoutes(ByVal routes As RouteCollection) routes.MapPageRoute("ndetails", ...
0
votes
1answer
170 views

MVC3 Routing: Match to any string

Simple question: How do I match a string in the MVC3 routing system? Example: {sub}.domain.com/{contoller}/{action}/{id} sub = [Match any string here]
1
vote
3answers
543 views

MVC 3 Routing and Action Links not following expected contextual Route

I'm attempting to do a custom route so I can prefix a url in my application with a chosen string and the do some processing based on that. The problem I'm running into is, that the action links that ...
0
votes
1answer
149 views

Maproute not working on prefix?

I have created a MVC application which works fine. Now I want to add custom keys in url and parse them, Its working only for one type of Url and not for next, so whats the issue with it. My route ...
1
vote
1answer
437 views

Dynamic routing in flask & order of operations when processing routes

With flask I'm hoping to do something like mydomain.com/groupname Where the groupname could be anything and will be the variable used to search a database. Problem is, I will also need this URL ...
0
votes
1answer
543 views

What is Wordpress' routing architecture and how to trace a file by URL

What is Wordpress' routing architecture and how do you trace a file by URL? How would you go about routing a URL to a specific PHP file or PHP function. e.g. www.my-site.com/abc executes function ...
0
votes
1answer
167 views

Play 2.0 routing not working with long?

I have a route defined like this: GET /question/:q_id controllers.Questions.viewQuestion(q_id: Long) Then in my controller I have this: public static Result viewQuestion(long q_id) ...
1
vote
1answer
3k views

Yii- How to add urlManager Rules within a module?

In Yii framework, the main config file defines components. one of which is urlManager: 'urlManager'=>array( 'urlFormat'=>'path', ...
0
votes
4answers
2k views

How to use AJAX hash deep linking in a JQuery Mobile web app

I'd like to implement a AJAX navigation system such as the one in GMail or similar web apps. For example, I have a root store, and all of the navigation must be handled in the JavaScript by ...

1 2 3 4