在nginx中配置虚拟主机:
server{
listen 80;
server_name www.xxxxx.com;
ssi on;
ssi_silent_errors on;
location / {
alias F:/teach/xcEdu/xcEduUI/xc‐ui‐pc‐static‐portal/; #本目录即为门户的主目录。
index index.html;
}
}
配置hosts文件:
本教程的开发环境使用Windows,修改C:\Windows\System32\drivers\etc\hosts文件
中添加:127.0.0.1 www.xxxxx.com