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

learn more… | top users | synonyms

0
votes
1answer
27 views

How to make custom urls having the same controller method in ASP.Net MVC

I have these classes. Secion Repository Section Application Section Controller Group Repository Group Application Group Controller Class Repository Class Application Class Controller and all of my ...
0
votes
0answers
94 views

Url only with string ID : URL Routing in asp.net 4.0 Webforms

I previously created a url like this www.mydomain.com/brand/nikkon using URL routing asp.net 4(webforms) RouteTable.Routes.MapPageRoute("brandRoute","brand/{Name}","~/Viewbrand.aspx"); Now I ...
0
votes
1answer
38 views

Optimal way of handling static page routes

I have a rails app where I'd like to introduce some static pages. Since my app has both a "public" face and a comprehensive admin backend, I have decided to move my controllers into corresponding ...
-3
votes
1answer
87 views

Passing multiple parameters via a url in MVC framework

I'm trying to pass multiple parameters in a url that looks like this... http://somedomain.com/lessons/lessondetails/5/3 ... to a function in the controller that looks like this ... class ...
1
vote
1answer
36 views

URL routing only works in localhost

I am using URL routing and my URL works in local like this; http://localhost:1545/ActivateUser/speu2mzi+TcVsO3NCQZtWAFX2lWecxotSfAOXu/1TEQ= but it's not working on another host. ...
-1
votes
1answer
72 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
1answer
100 views

Get correct route url data when url routing in asp.net

I am doing route url for SEO. But while I am getting route data, this error occurs; "404 - File or directory not found." URL; ...
0
votes
1answer
37 views

What do we have to do in order to push configurations like URL route mappings to ASP.NET MVC Views to an XML file?

All: We started off our project using ASP.NET Web Forms. We decided to integrate ASP.NET MVC 4 into our project. We would like to leave the existing .aspx ASP.NET Web Form pages as it is already. ...
0
votes
0answers
22 views

guys i am try use routing concept

I am try use routing concept.I want to show url accoding to page.all pages are created by dynamic. Everypage have it's own unique id.I know about basic concerpt I am adding global.asax file void ...
0
votes
1answer
113 views

CakePHP get current URL without language prefix

I used this solution for i18n of my CakePHP 2.3 website. When user in this URL: example.com/myController/myAction/param1/param2 I want to give link to ...
-2
votes
4answers
62 views

Method name must be a string [closed]

I got an error : Fatal error: Method name must be a string in Z:\home\localhost\www\oop\mvc_homework\index.php on line 9 $url = explode("/",$_GET['url']); require "controllers/".$url[0].".php"; ...
0
votes
1answer
50 views

How to make url's friendly with asp mvc routing?

I am using asp mvc3.I want to learn how to make my Urls friendly. this is my repository layer: public Section GetBySectionId(int sectionId) { return ...
0
votes
1answer
98 views

FOSUserBundle: Success target after password reset

After the user did resett his password using the password reset of FOSUserBundle, by default he is rediredted to the FOSUserProfile. I want to redirect to a different route. Is this possible and if ...
2
votes
4answers
179 views

PHP MVC class decide what method to execute based on url

I am trying to learn MVC and i want to to display a store page when the url is www.example.com/store and another cart page wenn the url is www.example.com/store/cart. Both methods are inside one ...
0
votes
1answer
36 views

Strange redirect behavior

I would like to know how to preserve a UrlRedirect in ASP.NET MVC-4: For example i have this: /admin/category/add/81/142 But after i use this: return RedirectToAction("Add", "Category", new ...
0
votes
0answers
85 views

Handling url in express.js+node.js? accepting specific words, double slash and more

Homework: I know few things about url handling in node.js app.param('id', /^\d+$/); app.get('/user/:id', function(req, res){ res.send('user ' + req.params.id); }); Will only accept /user/1, ...
2
votes
1answer
67 views

How does the FacesServlet know which facelet to render based on the URL?

I've been checking around and can't find an explanation of how the FacesServlet resolves a URL to a real file in the web app file structure. Within the context of servlets, my understanding is that a ...
0
votes
0answers
24 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: ...
0
votes
1answer
75 views

CakePHP adding language parameter to URLs

I implemented the solution at this article. "beforeFilter" and "_setLanguage" works fine. If URL has language parameter, I can successfully set cookies/session variables. And use it between ...
0
votes
2answers
68 views

Asp.net prevent Direct url usage

I am making a application in asp.net which has a login function. To acess the current user info i am passing the user email with the Redirect function like Session["email"] = TextBox1.Text; ...
0
votes
2answers
77 views

Yii - multiple urls mapped to single controller/action

One of the things Yii is good for is creating content management systems and similar on the fly. Such systems are generally light weight and scalable as they take advantage of the Yii framework and ...
1
vote
1answer
63 views

First optional routing segment acts as mandatory one for child routes

I have the following routing definition: 'admin_default' => array( 'type' => 'segment', 'options' => array( 'route' => ...
1
vote
3answers
131 views

Regex for URL routing - match alphanumeric and dashes except words in this list

I'm using CodeIgniter to write an app where a user will be allowed to register an account and is assigned a URL (URL slug) of their choosing (ex. domain.com/user-name). CodeIgniter has a URL routing ...
1
vote
0answers
60 views

Web API Lowercase Route

Hy there, I need to enforce Lowercase routes in my Web API project. If it was an MVC project i would use something like routes.LowercaseUrls = true; But in Web API that property does not exists. ...
0
votes
0answers
38 views

Multi Level Routing In CakePHP

I have an application which is dependent on a previous application which was made in CakePHP 1.1. At the root of the application where Cake Library is present there is another folder called ...
0
votes
2answers
48 views

Rails routes not matching 'new' pattern with RESTFul routes

I got this error: No route matches {:action=>"show", :controller=>"video_publications", :campaign_id=[...] With this url: /campaigns/514be3834413790249000025/video_publications/new I have ...
1
vote
1answer
52 views

ColdFusion/ASP split URL handling

I am working on a new ASP.NET MVC (IIS 7) application that needs to hang off the URL of an existing group of ColdFusion applications. The URL hosts a series of applications and is of the form: ...
0
votes
1answer
104 views

FuelPHP routes.php not working

I have a very basic setup with a new Fuel checkout. fuel/app/classes/controllers/auth.php class Controller_Auth extends Controller { public function action_login() { return ...
0
votes
1answer
25 views

how does magento URL access work

Hi i wanted to create a custom form to get input from the user, i can access the form from the url : http://localhost/website/index.php/contest but when i uploaded it to a server which has multiple ...
1
vote
0answers
54 views

Ruby Websocket endpoints, EventMachine, Goliath, etc

I am fairly new to using web sockets, but I have enjoyed what I have been doing so far. My app is currently setup with 3 endpoints based upon the path the connection is initially established with. ...
1
vote
0answers
36 views

codeigniter language in url [duplicate]

Hello guys I need help with my codeigniter project. I'm trying to make a website but I need multy-languages in url. So I need something like: site-name.com/ =====> this should use the default ...
1
vote
0answers
26 views

From the Graph API Explorer to valid url

How can I convert from the Graph API Explorer: GET=>https://graph.facebook.com/1261653562?fields=id,name,albums.fields(photos.fields(picture,name),updated_time) + Access_token=AAAC.... to a valid ...
1
vote
1answer
193 views

Pagination not working in CodeIgniter? [closed]

Hi i am new in CodeIgniter and i have a problem in paginatation, i used the pagination class and here is my Controller: public function user($page='user') { ...
0
votes
0answers
35 views

redirecting to aspx page in asp.net MVC 3 [duplicate]

I have a MVC3 application. Outside the views folder i created a folder called Reports and inside Reports i added an Index.aspx page with the ViewUserControl and here i call SQL server reporting ...
0
votes
3answers
74 views

Routes with trailing slashes in Pyramid

Let's say I have a route '/foo/bar/baz'. I would also like to have another view corresponding to '/foo' or '/foo/'. But I don't want to systematically append trailing slashes for other routes, only ...
1
vote
1answer
31 views

Find missing URL routes using the command-line

I'm trying to automate a check for missing routes a Play! web application. The routing table is in a file in the following format: GET /home Home.index GET /shop Shop.index I've ...
1
vote
0answers
185 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
1answer
50 views

Javascript MVC Url routing Component, routing in both side

i am making my own small jsmvc lib, and now i want a simple routing lib for my small framwork, i am just wiring up open source libs together to make it work according to my needs, and now i want a ...
0
votes
1answer
225 views

URIs with german special characters don't work (error 404) in Zend Framework 2

I want to get a list of cities, where each city name is linked and refers a page for this city: The links (created in the view script) look like this: http://project.loc/catalog/Berlin (in the ...
0
votes
1answer
60 views

Mvc area routing?

Area folders look like : Areas Admin Controllers UserController BranchController AdminHomeController Project directories look like : Controller ...
1
vote
1answer
47 views

How can I split my controller name for url routing?

I want to split my controller name.. For Example; My controller name is For_ExpController.cs and I want my url like this; http://localhost/For/Exp/Action How can I define it on my ...
0
votes
2answers
78 views

Page id without '?' in URL

I have seen some websites where different pages are accessed via a page id which isn't passed through via the get method.. So something like this: http://www.website.com/sitefolder/pageid/ Where as ...
0
votes
0answers
27 views

Zend module routing issues

Hi i have an module admin in my zend app. Following are my config: appilcation.ini: includePaths.library = APPLICATION_PATH "/../library" bootstrap.path = APPLICATION_PATH "/Bootstrap.php" ...
0
votes
0answers
25 views

Routing, url links append after each method, without using absolute urls

I have created a tiny framework that implements a front-controller by the help htaccess file This is a generic htaccess setup for routing. <IfModule mod_rewrite.c> RewriteEngine On ...
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
12 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
120 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
50 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 ...

1 2 3 4 5 35