您当前的位置:首页 > 计算机 > 服务器 > Nginx

配置 Nginx 服务器 URL 重定向

时间:12-14来源:作者:点击数:

配置 Nginx 服务器 URL 重定向

server {
  listen       443 ssl;
  server_name  tuan.nineopen.com;

  ssl_certificate      /etc/nginx/ssl/tuan.nineopen.com-ca-bundle.crt;
  ssl_certificate_key  /etc/nginx/ssl/tuan.nineopen.com.key;

  ssl_session_cache    shared:SSL:1m;
  ssl_session_timeout  5m;

  ssl_ciphers  HIGH:!aNULL:!MD5;
  ssl_prefer_server_ciphers  on;

  location / {
    try_files $uri $uri/ /index.html;
    root   /home/web/tuan/ms;
    index  index.html index.htm;
  }
}

添加一句 try_files $uri $uri/ /index.html;即可

方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门
本栏推荐