LoginSignup
7
8

More than 5 years have passed since last update.

laravel5でサイトのルートを変更する

Posted at

laravel5のプロジェクトフォルダをftpでそのままうpると…
http://example.com/プロジェクト名/public/

というURLになっちゃうけど、これを…
http://example.com/プロジェクト名
こうしたい!


  1. publicフォルダの中身を全部1つ上の階層(プロジェクトフォルダのルート)に移動させます。
  2. index.phpを編集します。
index.php_変更前
require __DIR__.'/../bootstrap/autoload.php';
$app = require_once __DIR__.'/../bootstrap/app.php';
index.php_変更後
require __DIR__.'/./bootstrap/autoload.php';
$app = require_once __DIR__.'/./bootstrap/app.php';

wordpressのindex.phpの場所変更するみたいにできるかなーって思ってやってみたら普通に出来ちゃった

7
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
8