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

2018-04-10 15:44:09 +08:00
 linfeng00
如题.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 不一样之外 还有重定向不一样.其他配置都一样的.
3893 次点击
所在节点    Linux
12 条回复
linfeng00
2018-04-10 15:45:50 +08:00
主域名是配了 https 的 现在想把子域名也配上.然后我想两个域名访问不同网站.例如 主域名是微信公众号 子域名是小程序,这样
linfeng00
2018-04-10 15:48:15 +08:00
我一输入 abx.xxxx.com 就自动跳转到主域名的首页. 这两个域名的网站根目录是不一样的 我都分开了.
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
2018-04-10 16:24:49 +08:00
@randyzhao ??你写的是区别 我是这样配啊 但是输入子域名就跳转到主域名的页面 怎么回事呢
linfeng00
2018-04-10 16:39:51 +08:00
我想解决的是 主域名和子域名分别访问不同的首页.例如 一个是公众号首页 一个是小程序首页.
zarte
2018-04-10 17:01:53 +08:00
用 ie 访问试下
etc
2018-04-10 17:06:31 +08:00
贴配置文件能不能去掉没用的东西? 这样真是看都不想看
maojy1989
2018-04-10 17:08:45 +08:00
不要每个 server 里都写 default_server,server 里写上各自的 server_name(域名)
mrjoel
2018-04-10 17:45:08 +08:00
这个。。。配置文件实在太乱。。只能给楼主发下参考配置 https://blog.him.cm/26.html
linfeng00
2018-04-10 17:54:39 +08:00
@randyzhao OK 解决了 按照你这样配
linfeng00
2018-04-10 17:54:53 +08:00
@maojy1989 嗯嗯 解决了 谢谢
randyzhao
2018-04-11 01:25:45 +08:00
@linfeng00 下午忙,就忘记说 default_server 的事情了,直接贴了个代码。解决就好

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/445665

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX