We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58d9dba commit d805372Copy full SHA for d805372
default.conf
@@ -4,6 +4,11 @@ server {
4
index index.html;
5
error_page 403 404 @error4xx;
6
location @error4xx {
7
- rewrite ^/(.*)/ /$1/404.html last;
+ rewrite ^/([^/]*) /$1/404.html last;
8
}
9
+ location ~* ^/[^/]*/how-to-guides/template.html {
10
+ return 301 $scheme://docs.stakater.com/mto/latest/kubernetes-resources/template/template.html;
11
+ }
12
+ # redirects issued by nginx will be relative
13
+ absolute_redirect off;
14
0 commit comments