使用laravel的WAMP子域路由

时间:2016-07-29 10:06:45

标签: apache laravel wamp laravel-5.1 wampserver

我正在使用laravel 5.1& WAMP服务器2.5。

我的域名像'www.example.com',它指向根。 在哪里我有一个像'admin.examle.com'这样的子域名。

Route::group(['prefix' => 'app', 'middleware' => 'authentication'], function () {
        Route::get('home', ['as' => 'app.home', 'uses' => 'DashboardController@home']);
    });

我在httpd-vhosts.conf上添加了虚拟主机,如下所示:

<VirtualHost *>
    ServerName www.example.com
    ServerAlias example.com
    DocumentRoot "C:/wamp/www"
</VirtualHost>

<VirtualHost *>
    ServerName example.com
    DocumentRoot "C:/wamp/www/app"
    ServerAlias app.example.com
</VirtualHost>

但由于app不是我的www文件夹中的实际文件夹,因此显示内部服务器错误。有人能帮忙吗 ??我需要使用子域名。

1 个答案:

答案 0 :(得分:0)