求助 我配置了一个新的子域名.为什么输入子域名会自动跳转到主域名? - V2EX
V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
Distributions
Ubuntu
Fedora
CentOS
中文资源站
网易开源镜像站
linfeng00
V2EX    Linux

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

  •  
  •   linfeng00 2018-04-10 15:44:09 +08:00 4621 次点击
    这是一个创建于 2821 天前的主题,其中的信息可能已经有所发展或是发生改变。
    如题.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
    贴配置文件能不能去掉没用的东西? 这样真是看都不想看
    Astralis
        8
    Astralis  
       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     Solana     1048 人在线   最高记录 6679       Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 25ms UTC 18:33 PVG 02:33 LAX 10:33 JFK 13:33
    Do have faith in what you're doing.
    ubao msn snddm index pchome yahoo rakuten mypaper meadowduck bidyahoo youbao zxmzxm asda bnvcg cvbfg dfscv mmhjk xxddc yybgb zznbn ccubao uaitu acv GXCV ET GDG YH FG BCVB FJFH CBRE CBC GDG ET54 WRWR RWER WREW WRWER RWER SDG EW SF DSFSF fbbs ubao fhd dfg ewr dg df ewwr ewwr et ruyut utut dfg fgd gdfgt etg dfgt dfgd ert4 gd fgg wr 235 wer3 we vsdf sdf gdf ert xcv sdf rwer hfd dfg cvb rwf afb dfh jgh bmn lgh rty gfds cxv xcv xcs vdas fdf fgd cv sdf tert sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf shasha9178 shasha9178 shasha9178 shasha9178 shasha9178 liflif2 liflif2 liflif2 liflif2 liflif2 liblib3 liblib3 liblib3 liblib3 liblib3 zhazha444 zhazha444 zhazha444 zhazha444 zhazha444 dende5 dende denden denden2 denden21 fenfen9 fenf619 fen619 fenfe9 fe619 sdf sdf sdf sdf sdf zhazh90 zhazh0 zhaa50 zha90 zh590 zho zhoz zhozh zhozho zhozho2 lislis lls95 lili95 lils5 liss9 sdf0ty987 sdft876 sdft9876 sdf09876 sd0t9876 sdf0ty98 sdf0976 sdf0ty986 sdf0ty96 sdf0t76 sdf0876 df0ty98 sf0t876 sd0ty76 sdy76 sdf76 sdf0t76 sdf0ty9 sdf0ty98 sdf0ty987 sdf0ty98 sdf6676 sdf876 sd876 sd876 sdf6 sdf6 sdf9876 sdf0t sdf06 sdf0ty9776 sdf0ty9776 sdf0ty76 sdf8876 sdf0t sd6 sdf06 s688876 sd688 sdf86