Url路径如何从文件路径名到laravel中的另一个名称

时间:2018-04-13 07:16:02

标签: laravel laravel-5 laravel-4 laravel-5.2 laravel-5.3

在路线代码下方鳍。

Route::get('clientlayout.main.index','InvoiceTicketController@show');
Route::get('clientlayout.main.mydomains','InvoiceTicketController@set');

当我运行这些路线时,我得到了网址

  

http://localhost:8000/clientlayout.main.index和    http://localhost:8000/clientlayout.main.mydomains

我希望我的网址更改如下:http://localhost:8000/indexhttp://localhost:8000/mydomains

建议我改变路线以解决此问题的解决方案。

2 个答案:

答案 0 :(得分:3)

2.2.16

对于您可以这样使用的命名路线

Route::get('/index','InvoiceTicketController@show');
Route::get('/mydomains','InvoiceTicketController@set');

了解更多详情,请点击

https://laravel.com/docs/5.6/routing#named-routes

答案 1 :(得分:1)

你应该试试这条路线。

Route::get('/clientlayout/main/index','InvoiceTicketController@show');
Route::get('/clientlayout/main/mydomains','InvoiceTicketController@set');

网址正在制作

http://localhost:8000/clientlayout/main/index
http://localhost:8000/clientlayout/main/mydomains

或者您应该尝试

Route::get('/index','InvoiceTicketController@show');
Route::get('/mydomains','InvoiceTicketController@set');

然后Url正在制作

http://localhost:8000/index
http://localhost:8000/mydomains