6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Laravelを複数ドメインで使ってみた

Posted at

サービス中にURLが長くなってしまう部分があって、これを短縮URLで解決しよう...というとある事情でhogehoge.comで稼働していLaravelシステムにfuga.jpでアクセスする必要が出たので、そのときの技術メモ

環境

  • Laravel 5.8
  • PHP 7.2
  • MacOSローカル

実装

ドメインを識別するミドルウェアをたてて、それをRouteGroupに読み込ませるイメージ。

【補足】
最初、この辺とか見てRoute::domain()で実装していたんですが、route()url()で返ってくるURLが揃わず挙動がおかしかったので断念。

1.config/app.phpでドメイン名を定義

...
'test_domain' => env('TEST_DOMAIN', 'hogehoge.local'),
'short_test_domain' => env('SHORT_TEST_DOMAIN', 'fuga.local'),
'production_domain' => env('PROD_DOMAIN', 'hogehoge.com'),
'short_domain' => env('SHORT_DOMAIN', 'fuga.jp'),
...

2.2つのMiddlewareを用意

これはhogehoge.com

app/Http/Middleware/OnlyMainDomain.php
<?php

namespace App\Http\Middleware;

use Closure;

class OnlyMainDomain
{
    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @return mixed
     */
    public function handle($request, Closure $next)
    {
        if (
            config('app.short_test_domain') === request()->getHost() ||
            config('app.short_domain') === request()->getHost()
        ) {
            return \abort(403);
        }

        return $next($request);
    }
}

これはfuga.jp

app/Http/Middleware/OnlyShortDomain.php
<?php

namespace App\Http\Middleware;

use Closure;

class OnlyShortDomain
{
    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @return mixed
     */
    public function handle($request, Closure $next)
    {
        if (
            config('app.test_domain') === request()->getHost() ||
            config('app.production_domain') === request()->getHost()
        ) {
            return \abort(403);
        }

        return $next($request);
    }
}

Middlewareを登録します。

app/Http/Kernel.php
    /**
     * The application's route middleware.
     *
     * These middleware may be assigned to groups or used individually.
     *
     * @var array
     */
    protected $routeMiddleware = [
        ...
        'domain.short' => \App\Http\Middleware\OnlyShortDomain::class,
        'domain.main' => \App\Http\Middleware\OnlyMainDomain::class,
        ...
    ];

3.ルーティングでMiddlewareを実装

routes/web.php
Route::group(['middleware' => ['domain.main']], function () {
    Route::get('/', function () {
        return view('index');
    });
});

Route::group(['middleware' => ['domain.short'], 'namespace' => 'Short'], function () {
    Route::get('/s/{key}', 'MainController@index');
});

どうなるか

これで、互いの領分を超えたルートへアクセスすると403を返すようになりました。

欠点

  • 2つのドメインで同じルートを利用できない
    hogehoge.com/aaa/bbbにはMainController@hogefuga.jp/aaa/bbbにはMainController@fugaみたいなのはできない。

まとめ

こんな行き当たりばったりの構築はやめて、ちゃんと設計したい。

6
6
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
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?