我正在尝试在不重新启动的情况下在apache 2.4中实现维护页面,并针对特定的503错误代码。我正在关注此网站https://www.shellhacks.com/redirect-site-maintenance-page-apache-htaccess/
下面是我的html文件,图像文件维护。svg也在同一根htdocs文件夹中:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body, html {
height: 100%;
margin: 0;
/* The image used */
background-image: url("maintenance.svg");
/* Full height */
height: 100%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>
</body>
</html>
重写规则如下:
DocumentRoot "${SRVROOT}/htdocs"
RewriteEngine On
RewriteCond %{DOCUMENT_ROOT}/maintenance.html -f
RewriteCond %{DOCUMENT_ROOT}/maintenance.enable -f
RewriteCond %{SCRIPT_FILENAME} !maintenance.html
RewriteRule ^.*$ /maintenance.html [L]
ErrorDocument 503 /maintenance.html
我不是Apache的专家,需要您的帮助才能使用重写规则加载图像。
最后的RewriteCond是对重写执行异常的操作。你可以添加另一个,它与前面的隐含"与":
RewriteCond %{REQUEST_URI} !maintenance.svg