Nginx配置web网站维护页面--->访问任意页面都要跳转到维护页面 #yyds干货盘点#
Posted 江晓龙的技术博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx配置web网站维护页面--->访问任意页面都要跳转到维护页面 #yyds干货盘点#相关的知识,希望对你有一定的参考价值。
1.网站维护页面背景
2.具体配置内容
server
server_name localhost;
listen 80;
location /
root /data/code/weihutongzhi;
index index.html;
if ($request_uri !~ "^/index.html$")
rewrite ^(.*) http:/urlxxx/index.html permanent;
server
listen 443;
server_name localhost;
ssl_certificate xxx.pem;
ssl_certificate_key xxx.key;
location /
root /data/code/weihutongzhi;
index index.html;
if ($request_uri !~ "^/index.html$")
rewrite ^(.*) https://urlxxx/index.html permanent;
以上是关于Nginx配置web网站维护页面--->访问任意页面都要跳转到维护页面 #yyds干货盘点#的主要内容,如果未能解决你的问题,请参考以下文章