I\'m trying to upload multiple Laravel 4 projects to my web server, not my development server. Each laravel 4 app is housed in their own subdirectory. How should my file structu
move all content include index.php
in each public directory to Store, Blog and Newspaper respectively. and change the following line:
require __DIR__.'/../bootstrap/autoload.php';
$app = require_once __DIR__.'/../bootstrap/start.php';
to
require __DIR__.'/bootstrap/autoload.php';
$app = require_once __DIR__.'/bootstrap/start.php';
good luck.
EDIT: Sorry. You have to edit /bootstrap/paths.php
as well, change
'public' => __DIR__.'/../public',
to
'public' => __DIR__.'/../',