V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
Distributions
Ubuntu
Fedora
CentOS
中文资源站
网易开源镜像站
linfeng00
V2EX  ›  Linux

求助 我配置了一个新的子域名.为什么输入子域名会自动跳转到主域名?

  •  
  •   linfeng00 · 2018-04-10 15:44:09 +08:00 · 3866 次点击
    这是一个创建于 2179 天前的主题,其中的信息可能已经有所发展或是发生改变。
    如题.nginx 服务器 我已经增加了一个.conf 文件,并且配置好了路径 和子域名.当我输入子域名 会默认跳转到主域名 这个应该怎么解决呢?
    主域名:
    # Default server configuration
    #
    server {
    listen 80 default_server;
    listen [::]:80 default_server;

    # SSL configuration
    #
    #listen 443 ssl default_server;
    #listen [::]:443 ssl default_server;
    #
    # Note: You should disable gzip for SSL traffic.
    # See: https://bugs.debian.org/773332
    #
    # Read up on ssl_ciphers to ensure a secure configuration.
    # See: https://bugs.debian.org/765782
    #
    # Self signed certs generated by the ssl-cert package
    # Don't use them in a production server!
    #
    # include snippets/snakeoil.conf;

    root /data0/projects/web/datongzy/syrian/skeleton/www;

    # Add index.php to the list if you are using PHP
    index index.php index.html index.htm;

    server_name www.XXXXX.com localhost;

    location / {
    # First attempt to serve request as file, then
    # as directory, then fall back to displaying a 404.
    try_files $uri $uri/ =404;

    if (!-e $request_filename) {
    #rewrite ^(.*)$ /index.php?s=$1 last;
    #rewrite ^(.*)$ https://$host$1 permanent;
    rewrite ^(.*) https://$server_name$1 permanent;
    break;
    }
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
    include snippets/fastcgi-php.conf;

    # With php7.0-cgi alone:
    # fastcgi_pass 127.0.0.1:9000;
    # With php7.0-fpm:
    fastcgi_pass unix:/run/php/php7.0-fpm.sock;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
    }

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    location ~ /\.ht {
    deny all;
    }
    }

    子域名:
    ##
    # You should look at the following URL's in order to grasp a solid understanding
    # of Nginx configuration files in order to fully unleash the power of Nginx.
    # http://wiki.nginx.org/Pitfalls
    # http://wiki.nginx.org/QuickStart
    # http://wiki.nginx.org/Configuration
    #
    # Generally, you will want to move this file somewhere, and start with a clean
    # file but keep this around for reference. Or just disable in sites-enabled.
    #
    # Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
    ##

    # Default server configuration
    #
    server {
    listen 80 default_server;
    listen [::]:80 default_server;

    # SSL configuration
    #
    #listen 443 ssl default_server;
    #listen [::]:443 ssl default_server;
    #
    # Note: You should disable gzip for SSL traffic.
    # See: https://bugs.debian.org/773332
    #
    # Read up on ssl_ciphers to ensure a secure configuration.
    # See: https://bugs.debian.org/765782
    #
    # Self signed certs generated by the ssl-cert package
    # Don't use them in a production server!
    #
    # include snippets/snakeoil.conf;

    root /data0/projects/web/applet/syrian/skeleton/www;

    # Add index.php to the list if you are using PHP
    index index.php index.html index.htm;

    server_name abc.xxxx.com localhost;

    location / {
    # First attempt to serve request as file, then
    # as directory, then fall back to displaying a 404.
    try_files $uri $uri/ =404;

    if (!-e $request_filename) {
    rewrite ^(.*)$ /index.php?s=$1 last;
    #rewrite ^(.*)$ https://$host$1 permanent;
    #rewrite ^(.*) https://$server_name$1 permanent;
    break;
    }
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
    include snippets/fastcgi-php.conf;

    # With php7.0-cgi alone:
    # fastcgi_pass 127.0.0.1:9000;
    # With php7.0-fpm:
    fastcgi_pass unix:/run/php/php7.0-fpm.sock;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
    }

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    location ~ /\.ht {
    deny all;
    }
    }


    # Virtual Host configuration for example.com
    #
    # You can move that to a different file under sites-available/ and symlink that
    # to sites-enabled/ to enable it.
    #
    #server {
    # listen 80;
    # listen [::]:80;
    #
    # server_name example.com;
    #
    # root /var/www/example.com;
    # index index.html;
    #
    # location / {
    # try_files $uri $uri/ =404;
    # }
    #}
    主域名和子域名配置 只是 root 和 server_name 不一样之外 还有重定向不一样.其他配置都一样的.
    12 条回复    2018-04-11 01:25:45 +08:00
    linfeng00
        1
    linfeng00  
    OP
       2018-04-10 15:45:50 +08:00
    主域名是配了 https 的 现在想把子域名也配上.然后我想两个域名访问不同网站.例如 主域名是微信公众号 子域名是小程序,这样
    linfeng00
        2
    linfeng00  
    OP
       2018-04-10 15:48:15 +08:00
    我一输入 abx.xxxx.com 就自动跳转到主域名的首页. 这两个域名的网站根目录是不一样的 我都分开了.
    randyzhao
        3
    randyzhao  
       2018-04-10 16:06:48 +08:00
    ```
    server {
    listen 80;
    server_name www.xxxx.com;
    root /data0/projects/web/datongzy/syrian/skeleton/www;;

    ....
    }

    server {
    listen 80;
    server_name abc.xxxx.com;
    root /data0/projects/web/applet/syrian/skeleton/www;

    ....
    }
    ```
    linfeng00
        4
    linfeng00  
    OP
       2018-04-10 16:24:49 +08:00
    @randyzhao ??你写的是区别 我是这样配啊 但是输入子域名就跳转到主域名的页面 怎么回事呢
    linfeng00
        5
    linfeng00  
    OP
       2018-04-10 16:39:51 +08:00
    我想解决的是 主域名和子域名分别访问不同的首页.例如 一个是公众号首页 一个是小程序首页.
    zarte
        6
    zarte  
       2018-04-10 17:01:53 +08:00
    用 ie 访问试下
    etc
        7
    etc  
       2018-04-10 17:06:31 +08:00
    贴配置文件能不能去掉没用的东西? 这样真是看都不想看
    maojy1989
        8
    maojy1989  
       2018-04-10 17:08:45 +08:00
    不要每个 server 里都写 default_server,server 里写上各自的 server_name(域名)
    mrjoel
        9
    mrjoel  
       2018-04-10 17:45:08 +08:00
    这个。。。配置文件实在太乱。。只能给楼主发下参考配置 https://blog.him.cm/26.html
    linfeng00
        10
    linfeng00  
    OP
       2018-04-10 17:54:39 +08:00
    @randyzhao OK 解决了 按照你这样配
    linfeng00
        11
    linfeng00  
    OP
       2018-04-10 17:54:53 +08:00
    @maojy1989 嗯嗯 解决了 谢谢
    randyzhao
        12
    randyzhao  
       2018-04-11 01:25:45 +08:00
    @linfeng00 下午忙,就忘记说 default_server 的事情了,直接贴了个代码。解决就好
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1021 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 19:32 · PVG 03:32 · LAX 12:32 · JFK 15:32
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.