前言:
眼前姐妹们对“nginx二级域名指定目录”大概比较注重,我们都需要了解一些“nginx二级域名指定目录”的相关资讯。那么小编也在网络上搜集了一些有关“nginx二级域名指定目录””的相关资讯,希望我们能喜欢,姐妹们快快来了解一下吧!远程连接并登录到 Linux 实例。
执行命令 cd /etc/nginx/conf.d 打开 Nginx 服务配置文件目录。
执行命令 vi 您要创建的域名.conf 创建域名规则配置文件,如示例中的 vi 。
输入 i 编辑新建的配置文件:
为每一个域名建立一个单独的配置文件时输入以下内容:
server
{
listen 80; #监听端口设为 80。
server_name ; #绑定您的域名。
index index.htm index.html index.php; #指定默认文件。
root /home/www/server110.com; #指定网站根目录。
include location.conf; #当您需要调用其他配置文件时才粘贴此项,如无需要,请删除此项。
}
将多个域名规则写进一个共同的配置文件时输入以下内容:
server
{
listen 80; #监听端口设为 80。
server_name ; #绑定您的域名。
index index.htm index.html index.php; #指定默认文件。
root /home/www/server110.com; #指定网站根目录。
include location.conf; #当您需要调用其他配置文件时才粘贴此项,如无需要,请删除此项。
}
server
{
listen 80; #监听端口设为 80。
server_name msn.server111.com; #绑定您的域名。
index index.htm index.html index.php; #指定默认文件。
root /home/www/msn.server110.com; #指定网站根目录。
include location.conf; #当您需要调用其他配置文件时才粘贴此项,如无需要,请删除此项。
}
为无 WWW 前缀的域名配置规则并加 301 跳转时输入以下内容:
server
{
listen 80;
server_name server110.com;
rewrite ^/(.*) permanent;
}
需要为域名添加 404 提示时输入以下内容:
server
{
listen 80; #监听端口设为 80。
server_name ; #绑定您的域名。
index index.htm index.html index.php; #指定默认文件。
root /home/www/server110.com; #指定网站根目录。
include location.conf; #当您需要调用其他配置文件时才粘贴此项,如无需要,请删除此项。
error_page 404 /404.html;
}
按 Esc 退出编辑并输入 :wq 保存退出。
执行命令 nginx -t 检查配置是否有误,并按照报错提示修复错误。
执行命令 service nginx restart 重启 Nginx 服务。
执行命令 service nginx reload 重新载入 Nginx 服务。
标签: #nginx二级域名指定目录