How to configure maintenance page in Traefik v1.7.33

We are using Traefik V1.7.33 as Azure ServiceFabric Application, which will perform traffic redirection to the windows containers in VMSS. We need to redirect traffic to the maintenance web page when there is an container image refresh. Following TOML configuration change didn't help.

[http.middlewares] [http.middlewares.test-errorpage.errors] status = ["500-599"] service = "serviceError" query = "/{status}.html"

[frontends] [frontends.website] backend = "website" [frontends.website.errors] [frontends.website.errors.network] status = ["500-599"] backend = "error" query = "/{status}.html" [frontends.website.routes.website] rule = "Host: website.mydomain.com"

Would like to know is there any other way to perform this.