douxiyi2418 2017-01-05 12:57
浏览 88
已采纳

Laravel:我的应用程序没有被路由

I'm running my first laravel app for the first after hours struggling with dependencies installation errors.

Sorry it might be tiny mistake but seems I couldn't find out.

Picture are darker, computer is being broken.

enter image description here

app/Http/routes.php

<?php

// view('helloworld') ==> helloworld.blade.php
Route::get('/', function () {
   return view('helloworld');
});

resources/view/helloworld.blade.php

<!DOCTYPE html>
<html> 
   <head>
   </head>

   <body>
      <div class = "container">       
         <div class = "content">

         </div>
        <p> Yo test....test..</p>   
      </div>
   </body>

</html>

when I hit http://localhost:8000/, it gaves me (even after refreshing) :

enter image description here

Why doesn't '/' get routed ? It's laravel 5, the latest one.

展开全部

  • 写回答

3条回答 默认 最新

  • doujia4759 2017-01-05 13:07
    关注

    In Laravel 5.3, the Http routes file was switched to the routes/ directory.

    https://laravel.com/docs/5.3/routing#basic-routing

    All Laravel routes are defined in your route files, which are located in the routes directory. These files are automatically loaded by the framework. The routes/web.php file defines routes that are for your web interface. These routes are assigned the web middleware group, which provides features like session state and CSRF protection. The routes in routes/api.php are stateless and are assigned the api middleware group.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部