将robots.txt插件添加到django

时间:2017-04-17 16:20:03

标签: python django

我正在尝试在我的django项目中包含robots.txt,并且遇到了很多麻烦。我正把手举起来尖叫。 :)

我一直在尝试使用此插件https://github.com/nkuttler/django-robots-txt,并已按照所有步骤操作。但我一直收到502个不良网关。所以我缺少一些东西,但我不知道是什么。

我已经通过pip安装了插件

pip install django-robots-txt

转到我的root url.py并添加了

from django.conf.urls.defaults import patterns, include, url
from robots_txt.views import RobotsTextView

urlpatterns = patterns('',
    url(r'^robots.txt$', RobotsTextView.as_view())
)

并尝试将其添加到我已安装的应用

INSTALLED_APPS = (
    'robots_txt'
)

我错过了什么?请救我脱离这个502。

enter image description here

enter image description here

0 个答案:

没有答案