- 工信部备案号 滇ICP备05000110号-1
- 滇公安备案 滇53010302000111
- 增值电信业务经营许可证 B1.B2-20181647、滇B1.B2-20190004
- 云南互联网协会理事单位
- 安全联盟认证网站身份V标记
- 域名注册服务机构许可:滇D3-20230001
- 代理域名注册服务机构:新网数码
nginx 绑定多个域名,可通过把多个域名规则写一个配置文件里实现,也可通过分别建立多个域名配置文件实现,一般为了管理方便,建议每个域名建一个文件,有些同类域名也可写在一个总的配置文件里。
一、每个域名一个文件的写法
首先打开 nginx 域名配置文件存放目录:/usr/local/nginx/conf/servers ,如要绑定域名 www.landui.com 则在此目录建一个文件:www.landui.com 然后在此文件中写规则,如:
server { listen 80; server_name www.landui.com; #绑定域名 index index.htm index.html index.php; #默认文件 root /home/www/server110.com; #网站根目录include location.conf; #调用其他规则,也可去除}
然后重启 nginx 服务器,域名便可绑定成功
nginx 服务器重启命令:/etc/init.d/nginx restart
二、一个文件多个域名的写法
一个文件添加多个域名的规则也是一样,只要把上面单个域名重复写下来即可,如:
server { listen 80; server_name www.landui.com; #绑定域名 index index.htm index.html index.php; #默认文件 root /home/www/server110.com; #网站根目录include location.conf; #调用其他规则,也可去除}server { listen 80; server_name msn.server110.com; #绑定域名 index index.htm index.html index.php; #默认文件 root /home/www/msn.server110.com; #网站根目录include location.conf; #调用其他规则,也可去除}
三、不带www的域名加301跳转
若不带 www 的域名需加 301 跳转,则先绑定不带 www 的域名,且无需写网站目录,直接进行 301 跳转,如:
server{listen 80;server_name server110.com;rewrite ^/(.*) http://www.landui.com/$1 permanent;}
四、添加404网页
添加 404 网页,可以直接在配置中添加,如:
server { listen 80; server_name www.landui.com; #绑定域名 index index.htm index.html index.php; #默认文件 root /home/www/server110.com; #网站根目录include location.conf; #调用其他规则,也可去除error_page 404 /404.html; }
提供以上四种规则方法供参考,解决 nginx 多域名配置问题。
售前咨询
售后咨询
备案咨询
二维码
TOP