阿里云服务器,linux系统安装nginx服务的网站
发布网友
发布时间:2022-02-26 21:26
我来回答
共1个回答
热心网友
时间:2022-02-26 22:56
你说的这个是泛域名解析,域名做好解析,然后nginx设置下,类似:
server_name *.xxxx;
if ($host ~* ^([^\.]+)\.xxx$) {
set $subdomain $1;
}
location / {
root /home/wwwroot/xxx/$subdomain/;
index index.php index.html index.htm;
}