You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

23 lines
437 B

# Frontend Redirects
location /deleted-page/ {
return 301 https://website.com/new-page/;
}
location /new-feature/ {
return 302 https://website.com/coming-soon/;
}
# Admin Redirects
location /admin/ {
return 301 https://website.com/?login=true;
}
# Test alignment
location /old-short-url/ {
return 301 https://website.com/new-short-url/;
}
location /old-loooooooooong-url/ {
return 301 https://website.com/new-long-url/;
}