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干货盘点#的主要内容,如果未能解决你的问题,请参考以下文章

nginx怎么设置默认访问页

通过配置host文件实现本地域名任意设置

Nginx web 网站登入验证

综合架构web服务之nginx详解

haporxy搭建web群集

haporxy搭建web群集