Nginx代码将www.homepage.com/index.html重定向到www.homepage.com?

时间:2019-04-24 13:45:08

标签: php web nginx server hosting

NGINX index.html主页重定向是必需的,这将:

重定向:

https://homepage.co.uk/index.html

收件人:

https://homepage.co.uk

(不会引起无限循环)

location = /index.html { return 301 homepage.co.uk/$1; }

已更新(有效的解决方案):

location /index.html {
    if ($request_uri = /index.html) {
        rewrite ^ http://$host? permanent;
    }
}

0 个答案:

没有答案