【发布时间】:2016-06-25 11:04:19
【问题描述】:
我已经安装了 Laravel 5 并开始显示欢迎页面。但无法显示任何其他页面。我已经安装了以下设置:
在 /etc/apache2/sites-available/laravel.example.com.conf 中
DocumentRoot /var/www/laravel/public
在/var/www/laravel/app/Http/routes.php
// ---- THIS DOESN'T WORK
Route::get('/simple', function () {
return View::make('simple');
});
// ---- THIS WORK FINE
Route::get('/', function () {
return View::make('welcome');
});
在 /var/www/laravel/public
$ ls -> index.php robots.txt web.config
在 /var/www/laravel/resources
$ ls -> errors vendor simple.blade.php welcome.blade.php
// welcome.blade.php -> gets displayed
// simple.blade.php -> doesn't get displayed
【问题讨论】:
-
您是否收到任何错误消息?启用调试并发布您的错误消息。
-
没有错误信息。只是找不到 404 页面
-
在simple.blade.php中,我复制了welcome.blade.php的确切代码
-
先用“欢迎”模板检查/。然后 /simple 使用欢迎模板。