Nginx 网络服务器使用 CNAME 时显示服务器 IP

Nginx 网络服务器使用 CNAME 时显示服务器 IP

我是 Nginx 新手,我发现它确实非常不错,而且速度很快。我在使用 CNAME 域名时遇到了问题,我已将服务器块定义如下

server_name example.com www.example.com t.example.com ~^.*$;

~^.*$ 我用来捕获所有域名

现在我有另一个域名,其 cname 如下 t.domain1.com CNAME t.example.com

当我在浏览器中打开它时,http://t.domain1.com它显示网站并且一切都很好,但是

但我也使用 URL 重写,当我尝试使用 URL AS 时

http://t.domain1.com/abc/8765

网站运行正常,但浏览器地址栏中的 URL 发生如下变化

http://192.87.xx.10/abc/8765

其中 192.87.xx.10 是我的服务器 IP。

http://t.domain1.com即使浏览器重定向到我的网站,我怎样才能保留该 URL ?

这是我的配置文件

    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        /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;


    index   index.html index.htm;

server {
     listen      80;
     server_name example.com www.example.com t.example.com ~^.*$;
     root        /usr/share/nginx/html;

location / {
         if (!-e $request_filename){
         rewrite ^(.*)$ /index.php;
         }
         index  index.html index.htm index.php;
     }

location ~ \.php$ {
         fastcgi_split_path_info  ^(.+\.php)(.*)$;

         fastcgi_param  PATH_INFO        $fastcgi_path_info;
         fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
         include fastcgi_params;

         fastcgi_pass   127.0.0.1:9000;
         fastcgi_index  index.php;

         fastcgi_read_timeout 600s;
         fastcgi_send_timeout 600s;
     }

谢谢

答案1

您的 nginx 配置中没有任何内容会导致此类行为(即重定向到 IP 地址)。问题应该出在您的应用程序中。

但是,有更好的方法来编写您的配置:

代替:

server {
    listen      80;
    server_name example.com www.example.com t.example.com ~^.*$;
    root        /usr/share/nginx/html;
}

你应该使用:

server {
    listen 80 default_server;
    server_name example.com;
    root /usr/share/nginx/html;
}

default_server属性使得 nginx在发现server任何其他匹配块的每个请求中使用此块。server

但是,我不明白你为什么要这样设置系统。如果你打算使用同一软件为多个域提供服务,我建议为每个域设置单独的软件副本。否则你以后会遇到不同的问题。

然后:

location / {
     if (!-e $request_filename){
     rewrite ^(.*)$ /index.php;
     }
     index  index.html index.htm index.php;
}

可以替换为:

location / {
    try_files $uri $uri/ /index.php;
    index index.html index.htm index.php;
}

相关内容