Zhao Long's Notes 
  • 首页
  • 归档
  • 分类
  • 标签
  • 关于
  • 友链
  •   
  •   
2020年9月2日 晚上
33 字 1 分钟

Nginx 301 重定向

修改配置文件

1
nginx.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
...

server {
listen 80;
server_name a.xxx.com;

location / {
return 301 https://b.xxx.com$request_uri;
index index.html index.htm;
}
}

...

Server
Server Nginx
HTML 页面重定向(自动跳转) 上一篇
Ubuntu 开启 SSH 服务 下一篇

 目录

搜索

Hexo Fluid