I have a problem when deploy website build on laravel 5 into VPS server, but on local machine it work fine.
My page is http://easyway.vn/ current page display blank
`chdir($this->laravel->publicPath());`
change to
chdir('/');
2.Step two Change these two paths in your_public_folder/index.php
require __DIR__.'/../your_app/bootstrap/autoload.php';
$app = require_once __DIR__.'/../your_app/bootstrap/app.php';
3.Step three Change public path in your_app/server.php
if ($uri !== '/' && file_exists(__DIR__.'/../public_html/'.$uri)) {
return false;
}
require_once __DIR__.'/../public_html/index.php';
Note: Change these path according to your App's new folder structure.