1
sobigfish 2014-01-27 15:46:24 +08:00 1
只是view不同的话,在views下面用frontend backend区分,router/controller 里View::make(frontend/不同的就好了。
请看这篇 Laravel 4 Multisites https://medium.com/laravel-4/26cdc75e4810 |
3
lyf362345 2015-05-02 01:00:58 +08:00
Laravel 你可以随意放, L4结构比较简单不像 L5, 如果各个子域下的区别较大或是想比较明显的分块, 可以在 App/controllers建立多个子目录, 每个对应不同的大模块或者子域.
然后在路由 用 Route::group 对接不同的 domain 就好. 类似这样 ``` Route::group(['domain' => 'www.example.com', 'namespace' => 'Www', function () { // routes }]) Route::group(['domain' => 'admin.example.com', 'namespace' => 'Admin', function () { // routes }]) ``` routes 那里也可以写到单独的文件, 不然routes.php文件会非常打... PS: 上面的代码是 markdown 格式的, 不知道会不会解析 |