nginx 绑定多个域名可以把多个域名规则写一个配置文件里,也可又分别建立多个域名配置文件,我一般为了管理方便,每个域名建一个文件,有些同类域名也可又写在一个总的配置文件里。

    一、每个域名一个文件的写法
    首先打开nginx 域名配置文件存放目录:/usr/local/nginx/conf/servers ,如要绑定域名www.myserver.com 则在此目录建一个文件:www.myserver.com.conf 然后在此文件中写规则,如:

    server
    {
    listen 80; server
    {
    listen 80;
    server_name www.myserver.com; # 绑定域名
    index index.htm index.html index.php; # 默认文件
    root /home/www/myserver.com; # 网站根目录
    include location.conf; # 调用其他规则,也可去除nginx 服务器重起命令:/etc/init.d/nginx restart

    二、一个文件多个域名的写法
    一个文件添加多个域名的规则也是一样,只要把上面单个域名重复写下来就 ok 了,如:
    server
    {
    listen 80;
    server_name www.myserver.com; # 绑定域名
    index index.htm index.html index.php; # 默认文件
    root /home/www/myserver.com; # 网站根目录
    include location.conf; # 调用其他规则,也可去除
    }

    server
    {
    listen 80;
    server_name msn.myserver.com; # 绑定域名
    index index.htm index.html index.php; # 默认文件
    root /home/www/msn.myserver.com; # 网站根目录
    include location.conf; # 调用其他规则,也可去除
    }

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

    server
    {
    listen 80;
    server_name myserver.com;
    rewrite ^/(.*) http://www.myserver.com/nginx域名配置方法 - 图1%2F#card=math&code=1%5D%28http%3A%2F%2Fwww.%5Bmyserver.com%5D%28http%3A%2F%2Fwww.server110.com%2F%29%2F)/$1) permanent;
    }

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

    server
    {
    listen 80;
    server_name www.myserver.com; # 绑定域名
    index index.htm index.html index.php; # 默认文件
    root /home/www/myserver.com; # 网站根目录
    include location.conf; # 调用其他规则,也可去除
    error_page 404 /404.html;
    }

    最后还有一个方法需要注意,可能有需要禁止 IP 直接访问 80 端口或者禁止非本站的域名绑定我们的 IP,这样的话应该
    如下处理,放到最前一个 server 上面即可:

    server{
    listen 80 default;
    servername ;
    return 403;
    }