我是靠谱客的博主 英勇水杯,最近开发中收集的这篇文章主要介绍nginx配置域名根目录转发到index.html,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

这个问题找了好半天没结果

原文:

You can just use rewrite function without location
rewrite  ^/$  /index.html  last;
or for permanent redirect
rewrite  ^/$  /index.html  permanent;

使用示例:

		#所有地址的转发
		location ^~/ {
			proxy_pass http://abc.abcccccc.com/;
			rewrite  ^/$  /index.html  last;
			index index.html;
			proxy_set_header Host $host;
			proxy_set_header    X-Real-IP        $remote_addr;
			proxy_set_header    X-Forwarded-For  $proxy_add_x_forwarded_for;
        }

 转载自:http://finddoc.top/article?id=b14eb1ed2b2842a78e8e1fe1f664d175

最后

以上就是英勇水杯为你收集整理的nginx配置域名根目录转发到index.html的全部内容,希望文章能够帮你解决nginx配置域名根目录转发到index.html所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部