我刚为我的django项目安装了django-robots-txt。现在,正如项目所述,我必须根据我的需要编辑robot.txt文件。由于我无法将该文件压缩到我的Heroku服务器上,因此我不确定如何在服务器上编辑此文件。有谁知道怎么做?
答案 0 :(得分:0)
在本地计算机上编辑文件。
做一个
git add -u
更新项目资源。 然后
git commit -m "changes that you made"
和
git push heroku master(assuming you are working on the master branch)
这应该将您最近的更改(包括robots.txt中的更改)推送到heroku。