我无法通过 url 打开页面
我可以通过hello.blade.php页面打开
**http://localhost:88/laravel/public/**
我想使用 url 打开 about.blade.php 页面
**http://localhost:88/laravel/public/about**
当我打开此页面时,我收到此错误消息
在此服务器上找不到请求的 URL /laravel/public/about。
请帮助我
我的代码是
你好.blade.php
<html>
<head>
<title>Welcome in to laravel frame work </title>
</head>
<body>
<h1> Hello, welcome to the home page </h1>
<h2> hello, {{ $name }}
</body>
about.blade.php
<html>
<head><title> About </title>
</head>
<body>
<h1>This is the About page</h1>
</body>
</html>
页面控制器.php
<?php
class pagecontroller extends BaseController
{
public function home()
{
$name = "jitender kumar malav";
return View::make('hello')->with('name', $name);
}
public function about()
{
return View::make('about');
}
}
路由.php
<?php
Route::get('/', 'pagecontroller@home');
Route::get('/about', 'pagecontroller@about');