Most voted "routing" questions
10 questions
Sort by count of
-
5
votes1
answer1377
viewsHow to implement a Route System in MVC?
I am creating an MVC Framework (more for studies), and I am trying to implement a route system, but I’m not sure how/where to run the routes. So I’d like to know if there’s any flow of execution of…
-
5
votes1
answer195
viewsLaravel Auth with Subdominio
Good morning, I’m trying to perform an auth with Ubdomain, but every time soon on the site returns the error of Too Many Redirects. This is my .env: SESSION_DOMAIN=.meudominio.com.br And the first…
laravel laravel-5 laravel-routes subdomain routingasked 5 years, 4 months ago Vitor Marileu Figueredo 155 -
2
votes0
answers51
viewsAngular 2 bug in the url after auto-Compile
Every time my Angular application auto compiles, the url is never restarted but my application goes back to the homepage the same way. So if I’m in the following URL:…
-
1
votes0
answers77
viewsRoute conflict in Angularjs and Wordpress
I’m having a problem with routing in Angularjs and Wordpress. Before I didn’t use the html5Mode(true) and my route was /#/dashboad and the route /blog worked normally. But, when I started using…
-
1
votes2
answers108
viewsRoute envelope
In my file Routes > web.php I have the following routes: Route::get('/user', (...)); Route::get('/user/{id}', (...) ); Route::get('/user/{id}/{nome}', (...) ); // retorna o nome e id do usuário…
-
0
votes1
answer133
viewsRouting system bypassing subfolders
I’m using the routing system Altorouter, and its use is very simple, use this way: **** THIS IS THE INDEX.PHP ***** /*Incluo o arquivo do AltoRouter*/ include ('application/router.php'); $router =…
-
0
votes1
answer61
viewsSlim Framework with Apache2.4
Good morning. I am creating an API to provide a service for other applications. I have the following scenario. A system to provide the service. This system has a virtualhost configured. The Uri is…
-
0
votes0
answers63
viewsAngular routing 2 and Laravel 5.3
I created an initial system (crú) of Laravel 5.3 and managed to implement angular 2.0... put to view the app.Component in Welcome.Blade and it worked normal... I have doubts about how to routing…
-
0
votes1
answer43
viewsRemove sharp(#) from Crossroads.js and run without it, how do I do?
Iae galera, so I use this lib to do the routes. however they come this # and even if I take, it still doesn’t work if I recharge in the browser F5 url: www.locahost.com/home = not found F5 url:…
-
0
votes1
answer158
viewsCreating a route system
First good afternoon. I’m trying to create a route system in PHP. So far I have the following routes: $prefix['teste'] = array('dados' => array( 'GET' => array( 'Auth/{id}' =>…