NGINX index.html主页重定向是必需的,这将:
重定向:
https://homepage.co.uk/index.html
收件人:
(不会引起无限循环)
location = /index.html { return 301 homepage.co.uk/$1; }
已更新(有效的解决方案):
location /index.html {
if ($request_uri = /index.html) {
rewrite ^ http://$host? permanent;
}
}