我是靠谱客的博主 威武服饰,最近开发中收集的这篇文章主要介绍nginx绑定多个域名,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

        nginx绑定多个域名可又把多个域名规则写一个配置文件里,也可又分别建立多个域名配置文件,我一般为了管理方便,每个域名建一个文件,有些同类域名也可又写在一个总的配置文件里。
一、每个域名一个文件的写法
       首先打开nginx域名配置文件存放目录:/usr/local/nginx/conf/servers ,如要绑定域名www.your-domain.com  则在此目录建一个文件:www.your-domain.conf 然后在此文件中写规则,如:server

1
2
3
4
5
6
7
{
listen 80 ;
server_name www. your-domain.com ; #绑定域名
index index.htm index.html index.php; #默认文件
root /home/www/your-domain.com; #网站根目录
include location.conf; #调用其他规则,也可去除
}

然后重起nginx服务器,域名就绑定成功了nginx服务器重起命令:/etc/init.d/nginx restart
二、一个文件多个域名的写法
一个文件添加多个域名的规则也是一样,只要把上面单个域名重复写下来就ok了,如:server

1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
listen 80 ;
server_name bbs.your-domain.com; #绑定域名
index index.htm index.html index.php; #默认文件
root /home/www/bbs.your-domain.com; #bbs目录
include location.conf; #调用其他规则,也可去除
}server
{
listen 80 ;
server_name www.your-domain.com; #绑定域名
index index.htm index.html index.php; #默认文件
root /home/www/www.your-domain.com; #网站根目录
include location.conf; #调用其他规则,也可去除
}

三、不带www的域名加301跳转
如果不带www的域名要加301跳转,那也是和绑定域名一样,先绑定不带www的域名,只是不用写网站目录,而是进行301跳转,如:

1
2
3
4
5
6
server
{
listen 80 ;
server_name your-domain.com;
rewrite ^/(.*) http: //www.your-domain.com/$1 permanent;
}

四、添加404网页

       添加404网页,都可又直接在里面添加,如:

1
2
3
4
5
6
7
8
9
server
{
listen 80 ;
server_name www.your-domain.com; #绑定域名
index index.htm index.html index.php; #默认文件
root /home/www/your-domain.com; #网站根目录
include location.conf; #调用其他规则,也可去除
error_page 404 / 404 .html;
}

学会上面四种规则方法,基本就可以自己独立解决nginx 多域名配置问题了

最后

以上就是威武服饰为你收集整理的nginx绑定多个域名的全部内容,希望文章能够帮你解决nginx绑定多个域名所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(58)

评论列表共有 0 条评论

立即
投稿
返回
顶部