导航:首页 > IDC知识 > nginx子目录域名

nginx子目录域名

发布时间:2021-01-25 07:36:20

1、nginx如何设置,使www二级域名绑定根目录,其他二级域名绑定子目录

这个应该是要从程序上设置

2、nginx域名如何定位到项目的某个目录下

server {

listen 80 default_server;

server_name  test.example.com;

root F:/web;

access_log  logs/access.log  main buffer=1024k;

}

3、怎么把nginx子目录301重定向到网站二级域名

比如phpwindow.com/download/ 301跳转到download.phpwindow.com

用的lnmp,我是直接加的一个download.conf文件放到/usr/local/nginx/vhost

然后在phpwindow.com的conf配置里面加一条include download.conf;

重启完毕。

download.conf的内容为:

location ~* ^/bbs/ {
rewrite ^/download/(.*)$ http://download.phpwindow.com/$1 permanent;
}

不添加这个conf应该也可以,直接写到nginx.conf文件里就可以了。

之后重启nginx—service nginx reload,访问看看效果吧!!

4、nginx同域名配置多目录路径

server{
server_name xxx.cn;
charset utf-8;
location / {
index index.html index.shtml;
root /web/t; 新路径
error_page 404 = @not_found;
}

location @not_found {
index index.html index.shtml;
root /web1/t; 老路径
}

}

5、nginx怎么把二级域名绑定子目录

RewriteCond %{HTTP_HOST} ^(bbs|blog|download).domain.com$
RewriteRule ^(.*)$ /%1/$1 [L, NC]

这样,会自动把bbs对应到bbs目录,blog对应到blog目录,download对应到download,要加新的域名时,只需要在上面那行按格式添加即可

6、nginx中怎么批量让二级域名绑定到子目录

发现现在新站快照不怎么更新了,不知道是否外链不够额。。 我把这贴发在其他论坛上,一哥们跟帖说我外链可能是发多了,优化过度,一直让我挺纠结的、、

与nginx子目录域名相关的知识