laravel 5子域名不能正常工作

时间:2016-06-29 13:19:52

标签: php laravel-5 subdomain

我有一个可以在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错误。任何想法如何访问我的静态页面到子域?

0 个答案:

没有答案