在路线代码下方鳍。
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/index和http://localhost:8000/mydomains。
建议我改变路线以解决此问题的解决方案。
答案 0 :(得分:3)
2.2.16
对于您可以这样使用的命名路线
Route::get('/index','InvoiceTicketController@show');
Route::get('/mydomains','InvoiceTicketController@set');
了解更多详情,请点击
答案 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