0
在我的web.php
中,我設置了以下路由。我想知道的是,我需要遵循哪些具體的規定來獲取子域的子域才能工作?子域路由不工作
我使用的域blah.blah.domain.tld
web.php:
Route::group(['domain' => '{blah}.blah.domain.tld'], function(){
Route::get('', '[email protected]');
});
控制器:
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Http\Requests;
class DealsFrontEnd extends Controller
{
public function index()
{
return view('front.deals');
}
}
@Devon我似乎沒有被得到任何東西關閉控制器 –
@Devon我只去了什麼是laravel用戶指南中使用子域名的條款。我沒有得到404我只是看到一個白頁 –
用戶指南顯示了一個您可以捕獲的動態子域的示例,如果您希望它爲靜態,請刪除括號。如果你沒有得到一個404,那麼這條路線很可能工作,並且問題還在其他地方。使用Laravel的'工匠路線:列表'。 – Devon