Laravel路线无法正常工作

时间:2017-01-27 04:05:43

标签: php routes laravel-5.3

在Laravel中,如果我从控制器调用一个url,它就无法正常工作。 例如,我就在example.com/dev/lar/public/index.php/location/{$id}这个位置。现在我重定向到以下路由location/create。例如,网址为<a href="location/create"></a>。然后网址显示example.com/dev/lar/public/index.php/location/location/create

我的网络文件如下:

Route::get("location/all","LocationController@showall");
Route::resource("location","LocationController");

更新:我在屏幕截图中更新了我的错误消息 错误消息截图如下:。

[IMG] http://i.imgur.com/PvXOJ04.png[/img]

1 个答案:

答案 0 :(得分:1)

我只使用URL :: to(&#39; location / create&#39;)功能。然后路线工作。该解决方案由@lea Tanao提出