URL routing is the process of mapping a URL to its content.
1
vote
2answers
47 views
Django: is it possible to specify accept method for a view in urls
I'm curious about setting urls accept_method directly when defining url like
url(r'some-pattern', 'view_name', name='url_name', accept_method='GET|POST')
I know there're view decorators like ...
0
votes
2answers
188 views
parse url to get id using javascript regex
I am writing a router which will parse the url and redirect to necessary components in the code, when I change my url and pass object id with it, I want to parse it using regular expression and route ...
0
votes
2answers
177 views
How to redirect www.mysite.com to mysite.com?
My MVC4 app is hosted on Azure (shared website) and works fine at mysite.com.
I'd like to redirect www.mysite.com to mysite.com, but it reports 404 error if accessed at www.mysite.com.
I'm thinking ...
0
votes
0answers
46 views
Concrete5 – Implicit Aliases for the Subpages of an Alias
I use the internationalization module for a new project. But for a one page and it's subpages I want to handle the translation manualy coded in the pagetype. There will be thousands of subpages, so I ...
2
votes
1answer
346 views
ZF2, create dynamic menu at module initiation
I have a menu which I need to create dynamically (some blog pages are added from a database). ZF2 Dynamic Menu with Zend\Navigation\Navigation addresses how to do this for an individual ...
0
votes
2answers
809 views
How can I setup Laravel 4 routes for pages of focus on my default controller?
There will be several high profile links for customers to focus on, for example:
Contact Us @ domain.com/home/contact
About the Service @ domain.com/home/service
Pricing @ domain.com/home/pricing
...
0
votes
0answers
26 views
Where does url routing happen in page lifecycle?
I need to do a redirect after url routing has done its bit. I'm thinking of putting this as early as possible. Does anyone have any links/advice as to where this happens in the page lifecycle?
1
vote
1answer
68 views
How can I put in a form where user-uploaded files are parsed and then displayed on a new url?
Ultimately, I want it so that when users upload a file, it parses the file and then creates a new url (using save_url) where it displays the output of that parsing.
Here is the edit.pt that renders ...
1
vote
1answer
430 views
Laravel 4 Routing with Arbitrary Number of URL Segments
I have an L3 application I'm trying to port to L4. In the L3 version, one of my routes is
Route::get('/(:any)/(:all?)', etc...
This allowed me to handle an arbitrary number of URL segments, for ...
0
votes
1answer
39 views
Simple 301 ReDirect
I currently use this to forward my URLS. But I had an error and I need to forward all
/search/search-term/1/ >> /search/search-term/
/search/search-term/2/ >> /search/search-term/2/
...
1
vote
2answers
92 views
Maintain URL when going from ASP.NET WebForms to ASP.NET MVC
I am converting an old ASP.NET WebForms app to ASP.NET MVC 4. Everything is fine, except that I have a need to maintain backward compatibility with a specific URL. I found this great post on using ...
0
votes
0answers
60 views
What is preferred for routes Global.Asax or a URLRoute attribute
I was wondering for all of our MVC .NET pros what is more preferred when defining routes. Should one look to use Global.asax most of the time or use a library that enables the use of a URLRoute ...
1
vote
1answer
18 views
How to navigate to an Id on a page using UrlRouting
I have a long page with several distinct sections. It's a terms page.
I want url's for the second section, "competition terms" to position next to the competition terms header.
Normally, I would ...
0
votes
1answer
190 views
Application Routes with Spring MVC
I'm looking for a way to manage the route's use on my WebApp.
Basically, I have three places that could share a router pattern.
And I could send this pattern to use on my views, through expression ...
9
votes
3answers
400 views
Including of files does not work as it should - url routing
My redirect process is showing some crazy stuff. The first part of the whole loop works just fine (if only the first element is typed in).
Possible url's look like:
www.site.com/category
...
0
votes
1answer
158 views
Htaccess Rewrite Rules for MVC
I'm having on hell of a time trying to figure out rewrite rules for my MVC microframework. I'm following the pattern url.com/:controller/:action/:params but when assets are requested (such as css, js, ...
1
vote
1answer
184 views
Yii: Disable direct access to Controller/Action, only valid if routed to
I would like to disable direct access to a Controller/Action in the Yii Framework, for example login/get, and only be accessible if routed to through CUrlManager.
In my configuration I am routing ...
2
votes
1answer
65 views
pretty urls in address bar with a ServiceStack.Net REST server and a jQuery client
I want pretty urls in the browser address bar like: http://domain.com/userName
Is this possible when the jQuery client is completely separated from the ServiceStack server?
Without any MVC or ...
0
votes
1answer
137 views
Zend2: how to add custom route type?
I have a class \Foo\BarRoute implementing the route interface (\Zend\Mvc\Router\RouteInterface).
How do I add \Foo\BarRoute as a bar route plugin and make it available in configuration (e.g. 'type' ...
2
votes
3answers
142 views
Spring MVC request / command objects
Is there a convenient way to turn something like this..
@RequestMapping("/some/action/{q}/...")
public void doSomething(@PathVariable("q"), oh, my, god, a, billion, annotated parameters) { .. }
...
0
votes
0answers
59 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
1answer
224 views
htaccess routing through index.php without allowing www
I have a shared hosting account through GoDaddy, and the site I have on it uses .htaccess to route all requests through index.php. This works fine on its own.
RewriteCond %{REQUEST_FILENAME} !-f
...
6
votes
2answers
302 views
Encoding an url correctly while using a rewrite engine
I am using a mod_rewrite and a routing system extracted from Akelos Framework.
I have a very big problem while using some symbols in a search key parameter.
A routing map is following:
...
0
votes
1answer
34 views
asp.net mvc url routing: how to get particular link URL
Given the following routing:
routes.MapRoute(
"RouteName", // Route name
"ViewFoo/{FooId}",
new { controller = "Foo", action = "View"}
);
...
0
votes
1answer
96 views
MVC link text from address bar
I have made a website with MVC and I have a little problem on routing: the link addresses from address bar appears with some strange paramaters like:
...
0
votes
1answer
37 views
How to use urlrouting with https
I'm using url routing for my latest project - it's web forms not MVC.
I noticed that all paths to physical pages are virtual, so how do I direct to an https page?
1
vote
2answers
260 views
The value for annotation attribute RequestMapping.value must be a constant expression
When using the following code snippet:
public class MyUrls {
// properties get initialized using static{...}
public final static String URL_HOMEPAGE = properties.getProperty("app.homepage"); ...
0
votes
0answers
120 views
WebApi Routing not working with a string parameter
In a simple WebApi project, I want to make calls to either return an individual score by score id (int), or all scores for a particular patient (by patient name = string).
I have two routes ...
0
votes
0answers
30 views
Static file Urls to routes
I have an ASP.NET Web Forms application and I am using routes to route to a handler which outputs an image.
To make the Urls nicer I want to use Urls like /dynamicimages/1.jpg, where /dynamicimages/ ...
-1
votes
1answer
51 views
.htaccess - How to clean the address bar? [closed]
This is my htaccess configuration right now:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?url=$1 [L,QSA]
My problem is that ...
0
votes
3answers
189 views
Prevent Url Tampering to access another users data
I just wanted to gauge opinions on how I should approach this problem and ultimately looking for a quick win (wrong way to think about things nut time pressures mean I have to think and act quickly!
...
1
vote
1answer
200 views
Route with Two optional parameters in MVC3 not working
I have a following types of url used in my Application.
localhost/admin/userdetail/id
localhost/admin/userdetail/id/true
localhost/admin/userdetail/id/true/success
Here is my Admin ...
0
votes
0answers
41 views
is there a max number of parameters that can be used in url mapping?
I'm working on a catalog type program and need to track bread-crumbs during browsing and searching while creating SEO friendly URL's. I have Categories that can go 5 levels deep, its rare, but could ...
0
votes
2answers
241 views
codeigniter how to set routes to default controller according the no of uri segments
I am using codeigniter as a module in my project to display information as categories and its items.
I want the url's like the following
sitename.com/module/ will display all items in random order.
...
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 ...
0
votes
2answers
76 views
How to add a MapRoute like site.com/id
I want to create a URL Shorter website. Urls that I offer is like site.com/XXX.
XXX is the value of the short URL.
I want to have website on site.com and urls are site.com/xxx. I want to get xxx from ...
0
votes
2answers
61 views
Regular Expression within URL
I've tried searching for the answer but it's a tough question to ask in the first place, here goes.
Consider the following URL(s):
hotels-london-kensington-5star
...
1
vote
1answer
190 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
0answers
88 views
Symfony2 Router not recognizing requirements
I have a class RouteLoader that implements the Symfony\Component\Loader\LoaderInterface and dynamically adds a bunch of routes at load(). The routes are showing up fine, but the Router does not seem ...
2
votes
2answers
551 views
ZF2 routing configuration
I've just built a zf2 project and i'm having a configuration problem.
When i go to mydomain.com this routs as specified in configuration files to Application module, index controller, index action.
...
0
votes
2answers
79 views
url aliasing for profile names in codeigniter
I want to write the profile names like www.example.com/profilename
For this I thought of redirecting every name that wasn't a controller to my profile controller.
I used the following code
...
0
votes
1answer
69 views
Better routing in Yii
I'm new to Yii. I have a controller like this:
<?php
class EventsController extends Controller
{
public function actionIndex()
{
$this->render('index');
}
}
How can i ...
1
vote
1answer
54 views
How to find the parent model of a polymorphic nested resource in the index action?
I want to determine the parent model of a nested resource in the index action.
(Important: I'm asking about the index action only. In all other REST actions it's trivial to find the parent model. ...
-1
votes
1answer
135 views
PHP: Custom page landing for users [closed]
I am building an application and my customer wants to implement a basic authentication system with group permissions. All good.
The problem I want to tackle is that he wants to be able to set for ...
0
votes
1answer
66 views
What is the best way in python/django to let users add files to the database?
I am trying to let users create html pages that they can view on my website. So the homepage would just have a place for file upload, then some script on my site would take the file and convert it ...
0
votes
4answers
134 views
Get controller folder name in codeigniter?
if i have folder in controller like this :
controller/folder/class/method
how to get current folder,
for class : $this->router->class
for method : $this->router->method
How can i get ...
0
votes
2answers
116 views
CakePHP Routing query
How do I show the URL through CroogoRouter::connect function in CakePHP?
I passed the name of controller and action my routes file like:
CroogoRouter::connect('/', array('admin' => true, ...
0
votes
1answer
47 views
Accessing a websites home file without the file name and extension
I am working on a website that has a URL such as the following:
http://www.domain.com/directory/home.php
I was wondering if it is possible to set up the site so users can access it like so:
...
0
votes
1answer
221 views
Cannot get Yii urlManager to work
I am asking this after a couple of hours of searches. I just can't tell what I am missing here. I am trying to set friendly URLs for my Yii application.
My base url is ...
10
votes
4answers
151 views
rules to redirect to subdomain
Who defines the URLs to be redirected to the mobile version?
Lets take twitter as an example:
https://twitter.com -> redirect mobile
https://dev.twitter.com -> not redirect mobile
In an MVC ...





