同一网站上的多个laravel应用程序

时间:2015-02-14 22:23:08

标签: php laravel-4

我目前在两个不同的网站上托管了两个Laravel v4.2项目。我想在子目录下的同一网站上托管这两个应用程序。例如www.domain.com/lara_app1www.domain.com/lara_app2。我已经做了一些搜索,但是找不到真正有用的东西。

然而,我似乎找不到任何具体的东西来完成这项工作。我目前设置了两个独立的应用程序:

domain-one
- app
- bootstrap
- public_html
    - assets
        - *bootstrap v3 and other css/js*
    - index.php (from laravel)
    - .htaccess (from laravel)
- vendor

domain-two
- app
- bootstrap
- public_html
    - assets
        - *bootstrap v3 and other css/js*
    - index.php (from laravel)
    - .htaccess (from laravel)
- vendor

他们都连接相同的数据库,但是作为不同的用户。我将如何设置如下?

domain
- app1
      - *project files*
- app2
      - *project files*

提前致谢!

1 个答案:

答案 0 :(得分:0)

我通过为网站上的每个应用程序创建一个子域来解决我的问题。