技术解析

nginx 不带 www 可以正常访问, www 域名不能正常访问
0
2021-05-25 11:49:42
idczone

一旦访问 www 域名就会跳转到 域名访问提示

图片描述

域名已经解析 www 了,下面是nginx.conf

user              nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log;
#error_log  /var/log/nginx/error.log  notice;
#error_log  /var/log/nginx/error.log  info;

pid        /var/run/nginx.pid;

events {
    worker_connections  1024;
}

http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';    
    access_log  /var/log/nginx/access.log  main;
    sendfile        on;
    #tcp_nopush     on;
    #keepalive_timeout  0;
    keepalive_timeout  65;
    #gzip  on;
    include /etc/nginx/conf.d/*.conf;
    include /etc/ngi美国服务器nx/sites-enabled/*.conf;
}

sites-enabled

server {
    listen 80;
    server_name www.youzisq.com youzisq.com;

    location / {
        proxy_pass http://127.0.0.1:5050;
        proxy_set_header Host $host;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }
}

首先检查 www 解析(或者解析生效)没呃。。。。

是不是 nginx 没 reload 配置

我觉得是域名解析不成功, nginx 配置是没有问题的

解析应该是正常的,之前没用 nginx 的时候,加端口访问,是可以访问的,用了 nginx 之后,就这样了。

解析应该是正常的,之前没用 nginx 的时候,加端口访问,是可以访问的,用了 nginx 之后,就这样了。

nginx -s reload 吗?执行过,还重启过。




刚刚解决了,是 DNS 缓存。谢谢各位。

表示可以访问 www 了

dns 没生效吧
我这边 访问两个都是好的

数据地带为您的网站提供全球顶级IDC资源
在线咨询
专属客服