【发布时间】:2017-08-20 23:31:39
【问题描述】:
几个小时前,我在网上发布了一个博客,但我的链接不起作用。我只能看到主页。如果我点击菜单,我会收到错误 500。网站 4thquarter.alexandrehamed.com 的链接,数据库是空的,所以如果看起来什么都没有,这是正常的
感谢您的帮助(对不起,我的帖子看起来很乱)
这里是我的 htaccess 文件的屏幕
exemple of i have route.php:
Route::get('',[
'uses' =>'BlogController@Index',
'as' =>'home.content'
]);
Route::get('/blog/{post}',[
'uses' => 'BlogController@show',
'as' => 'home.show',
]);
Route::get('/statistiques',[
'uses' => 'BlogController@stats',
'as' => 'home.stats'
【问题讨论】:
-
500 可能意味着任何事情。您需要查看 Web 服务器日志文件。
标签: laravel .htaccess laravel-5