server {
    listen 80;
    server_name test.hehe.com;

    location /riskcontrol {
      root /data;
      try_files $uri $uri/ /riskcontrol/index.html;
      access_log /app/logs/riskcontrol.log;
    }

    location /buyloan {
      root /data;
      try_files $uri $uri/ /buyloan/index.html;
      access_log /app/logs/buyloan.log;
    }
}

参考链接: http://blog.csdn.net/echo008/article/details/77098142

相关文章:

  • 2022-12-23
  • 2021-11-26
  • 2022-12-23
  • 2021-05-08
猜你喜欢
  • 2021-05-19
  • 2021-10-06
  • 2021-12-17
  • 2021-07-15
  • 2022-12-23
相关资源
相似解决方案