summaryrefslogtreecommitdiffstats
path: root/forum_modules/robotstxt/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'forum_modules/robotstxt/urls.py')
-rwxr-xr-xforum_modules/robotstxt/urls.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/forum_modules/robotstxt/urls.py b/forum_modules/robotstxt/urls.py
new file mode 100755
index 00000000..79a6d84c
--- /dev/null
+++ b/forum_modules/robotstxt/urls.py
@@ -0,0 +1,6 @@
+from django.conf.urls.defaults import *
+from django.views.generic.simple import direct_to_template
+
+urlpatterns = patterns('',
+ (r'^robots.txt$', direct_to_template, {'template': 'modules/robotsdennyall/robots.txt'}),
+)