如何将IP地址的HTTP URL重定向到域名的HTTPS URL?

时间:2018-12-31 21:41:49

标签: http nginx https url-redirection

如何在Nginx中将诸如http://192.0.2.4这样的URL重定向到https://example.com而不是https://192.0.2.4

就像Google那样,将https://172.217.7.206重定向到https://google.com

我的nginx配置:

#Redirect all traffic to HTTPS

  server {
  listen 80 default_server;
    return 301 https://$host$request_uri;
    } 

 server {

    listen 443 ssl http2;
    server_name  www.example.com;

我不需要任何重写,因为它花费更多的资源。

1 个答案:

答案 0 :(得分:0)

将所有流量重定向到HTTPS

如果您在服务器中注册的唯一域是www.example.com,则此解决方案应为您工作。这会侦听“ ip”并将其重定向到www.example.com。

server {
    server_name 192.0.2.4;
    return 301 https://www.example.com$request_uri;
}