0
我將改變我的域名爲另一個,只想在舊域名中服務「/」,但其他路徑將重定向到URL上下文後的新域名。重定向任何路徑,但只排除/
location ^/(.*)$ {
# only serve /, other paths will be redirected to the new domain
rewrite ^/(.*)$ https://new.com/$1 permanent;
}
location/{
# only serve a html in old.com/ to explain the domain change
index index.html;
}
這是重定向每個請求,包括根環境,我失蹤了什麼?