Top "Url-routing" questions

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

Client Routing (using react-router) and Server-Side Routing

I have been thinking and I am confused with the routing between Client and Server. Suppose I use ReactJS for …

javascript reactjs routes react-router url-routing
Using ASP.NET routing to serve static files

Can ASP.Net routing (not MVC) be used to serve static files? Say I want to route http://domain.tld/…

asp.net url-routing
Organize routes in Node.js

I start to look at Node.js. Also I'm using Express. And I have a question - how can I …

node.js express url-routing
React-Router : What is the purpose of IndexRoute?

I don't understand what the purpose of using an IndexRoute and IndexLink. It seems that in any case the code …

javascript reactjs react-router url-routing
Multiple path names for a same component in React Router

I am using the same component for three different routes: <Router> <Route path="/home" component={Home} /> &…

javascript reactjs path react-router url-routing
ASP.NET MVC URL Routing with Multiple Route Values

I am having trouble with Html.ActionLink when I have a route that takes more than one parameter. For example, …

asp.net asp.net-mvc url-routing
AngularJS - How do I change the State from Inside the Controller

I am new to AngularJS and would like to know how I change the State from within the Controller. For …

angularjs url-routing state
Laravel 5 check whether a user is logged in

I am new to Laravel 5 and trying to understand its Auth process. I want to prevent user to reach some …

authentication laravel filter url-routing laravel-5
Express routes parameter conditions

I have a route on my Express app that looks like this: app.get('/:id', function (request, response) { … }); The …

node.js express routing url-routing
Default route in Express.js

I'm writing an application with node.js and express. I have setup a default route as this : app.get('/…

javascript node.js express url-routing