nginx不帶www可以正常訪問,www網域不能正常訪問
PHP中文网
PHP中文网 2017-05-16 17:15:57
0
1
615

一旦造訪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/nginx/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;
    }
}
PHP中文网
PHP中文网

认证高级PHP讲师

全部回覆(1)
phpcn_u1582

業者進行的DNS跳轉,最可能的原因就是網域名稱沒有解析,或是網域的解析結果還沒生效。請檢查網域解析的TTL,到網路上查查當地的解析情況,試試看清空本地的DNS快取。

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板