i have developed a project with default directory structure.
But on production, i don't want public in URL.
What can be done.?
I tried changing the app path, but still not working.
i have developed a project with default directory structure.
But on production, i don't want public in URL.
What can be done.?
I tried changing the app path, but still not working.
Just copy index.php and .htaccess file from public directory and paste it in project root folter.
Then change bootstrap path in project root folder index.php file like below,
require __DIR__.'/bootstrap/autoload.php';
and
$app = require_once __DIR__.'/bootstrap/app.php';