laravel5.0 view层页面之间的跳转流程[通过route路由控制]



比如:我的网站放在:/var/www/html/oschina/下,apache定位到 /var/www/html/ 为止

然后主页在,/var/www/html/oschina/public/index.php


所以在浏览器中访问,我需要这样输入: http://192.168.30.104/oschina/public/


resources目录下的views层级关系:

views

introduce

aboutus.php

index.blade.php

现在index.blade.php需要跳转到aboutus.php, 代码如下:


翻译成http格式就是:  http://192.168.30.104/oschina/public/aboutus


然后在route.php 中截获命令:Route::get('/aboutus','WebController@aboutus');

解析aboutus 命令,并交给 WebController.php文件下面的aboutus函数处理,aboutus函数代码:


public function aboutus()
{
return view('introduce/aboutus');
}

跳转到 views目录下的introduce文件夹下面的about us.php文件处理
















你可能感兴趣的:(php,laravel)