我在本地主机上创建了一个非常简单的rails应用程序并删除了public / index.html并将:root路由更改为另一个页面。它工作正常,但当我部署到heroku时,index.html页面显示“Welcome Aboard,你正在铁轨上骑红宝石”
我如何在Heroku中摆脱它?它为什么存在?
答案 0 :(得分:13)
您确定要从您正在推送的git仓库中删除public / index.html吗?
git rm public/index.html
git add -u
git commit -m "Removed index.html"