Skip to content

Instantly share code, notes, and snippets.

@filljoyner
Last active October 11, 2018 17:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save filljoyner/cc1395e164578bc3c038a4eb8a192705 to your computer and use it in GitHub Desktop.
Save filljoyner/cc1395e164578bc3c038a4eb8a192705 to your computer and use it in GitHub Desktop.
Laravel - Change Public Directory
<?php
// Replace Application instance with below
// Override public directory with custom application instance
$app = new \App\Abilities\App\Application(
realpath(__DIR__.'/../')
);
<?php
namespace App\Abilities\App;
class Application extends \Illuminate\Foundation\Application
{
public function publicPath()
{
return $this->basePath.DIRECTORY_SEPARATOR.'content';
}
}
<?php
if ($uri !== '/' && file_exists(__DIR__.'/content'.$uri)) {
return false;
}
require_once __DIR__.'/content/index.php';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment