我有一个可以在stage.mysite.com
访问的网站现在我想拥有另一个网页的子网域,可以在profile.stage.mysite.com
访问。
在我的服务器中,我已经配置了主机。
ServerAdmin webmaster@localhost
ServerName stage.mysite.com
ServerAlias *.stage.mysite.com
DocumentRoot /var/www/staging.mysite.com/public
在我的routes.php中这是代码。
Route::group(['domain' => 'profile.stage.mysite.com'], function()
{
Route::get('/', 'FrontendController@profile');
});
但是当我尝试访问http://profile.stage.mysite.com
时返回Server not found
错误。任何想法如何访问我的静态页面到子域?