[enh] robots.txt added

This commit is contained in:
asciimoo 2013-12-01 16:10:38 +01:00
parent d50414275c
commit 822bf2f36d
1 changed files with 8 additions and 0 deletions

View File

@ -148,6 +148,14 @@ def stats():
stats = get_engines_stats()
return render('stats.html', stats=stats)
@app.route('/robots.txt', methods=['GET'])
def robots():
return Response("""User-agent: *
Allow: /
Allow: /about
Disallow: /stats
""", mimetype='text/plain')
@app.route('/opensearch.xml', methods=['GET'])
def opensearch():
global opensearch_xml