小白求解路由问题
我在route文件中注册了路由,要怎么调用我才能进行访问
这个是注册的路由Route::get('test',function(){echo "get路由测试"});
这个是在表单中action调用的action="domain_name/test"
这个方法访问出404错误,我用的是laravel5
这个是注册的路由Route::get('test',function(){echo "get路由测试"});
这个是在表单中action调用的action="domain_name/test"
这个方法访问出404错误,我用的是laravel5
2 个回复
xlimit
赞同来自:
没有的话用domain_name/index.php/test
domain_name可能还需根据你的服务器配置加上public,
也就是domain_name/public/index.php/test
雁鸣零落
赞同来自:
route
产生给定路由名称的网址。
表单中使用 {{route('路由名称')}}
如:
表单: