.htaccess - laravel 5.4 error 500 -


few hours ago put blog online but link doesn't work. can see main page. if click on menu i've got error 500. link of web site 4thquarter.alexandrehamed.com, db empty it's normal if nothing

thanks ( sry post messy)

here screen of htaccess file

enter image description here

exemple of 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' 

take @ log file - storage/logs/laravel.log. it's haven't set app_key in environment. if case, generate 1 php artisan key:generate --show , pop in .env file.


Comments

Popular posts from this blog

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -