单个laravel框架配置多个域名访问(前后台分离)

 单个laravel框架配置多个域名访问(前后台分离)

这里说的主要步骤
1.在laravel框架web配置分组路由:
首级域名
Route::group([‘domain’=>‘www.api.com’], function () {});
#二级域名
Route::group([‘domain’=>‘blog.com’], function () {});
2.在nginx里配置地址
server {
listen 80;
server_name www.api.com blog.com;
set $_base “D:/phpsever/wwwroot/default/API/public”;
root $_base/;
index index.php index.html index.htm;
include php.conf;
}
c盘里也要配置

你可能感兴趣的:(单个laravel框架配置多个域名访问(前后台分离))