首页 > 解决方案 > nginx code to redirect www.homepage.com/index.html to www.homepage.com?

问题描述

NGINX index.html homepage redirect is needed, which will:

redirect:

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

to:

https://homepage.co.uk

(without causing an infinite loop)

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

UPDATED (Working Solution):

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

标签: phpwebnginxserverhosting

解决方案


推荐阅读