【Laravel】publicフォルダをプロジェクトディレクトリの外に配置する

public内にあるcssやjsなどのassetをフロントエンドの開発チームが触る、またセキュリティ上の理由から「public」フォルダをプロジェクトディレクトリの外に出したい時の対応方法のメモ↓


(プロジェクトディレクトリを「src」という名前にした場合)
(1) 「public」フォルダを切り取り、「src」と同じディレクトリ内におく

(2) あとは「public」フォルダ内の「index.php」の以下のパスの部分を

/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader for
| our application. We just need to utilize it! We'll simply require it
| into the script here so that we don't have to worry about manual
| loading any of our classes later on. It feels great to relax.
|
*/

require __DIR__.'/../vendor/autoload.php';

/*
|--------------------------------------------------------------------------
| Turn On The Lights
|--------------------------------------------------------------------------
|
| We need to illuminate PHP development, so let us turn on the lights.
| This bootstraps the framework and gets it ready for use, then it
| will load up this application so that we can run it and send
| the responses back to the browser and delight our users.
|
*/

$app = require_once __DIR__.'/../bootstrap/app.php';

以下のように変える。そのまんま。

/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader for
| our application. We just need to utilize it! We'll simply require it
| into the script here so that we don't have to worry about manual
| loading any of our classes later on. It feels great to relax.
|
*/

require __DIR__.'/../src/vendor/autoload.php';

/*
|--------------------------------------------------------------------------
| Turn On The Lights
|--------------------------------------------------------------------------
|
| We need to illuminate PHP development, so let us turn on the lights.
| This bootstraps the framework and gets it ready for use, then it
| will load up this application so that we can run it and send
| the responses back to the browser and delight our users.
|
*/

$app = require_once __DIR__.'/../src/bootstrap/app.php';

(3) 後はドキュメントルートを移動した先の「public」に向くように調整するだけ

以上。