瀏覽代碼

[enh] robots.txt added

asciimoo 11 年之前
父節點
當前提交
822bf2f36d
共有 1 個檔案被更改,包括 8 行新增0 行删除
  1. 8
    0
      searx/webapp.py

+ 8
- 0
searx/webapp.py 查看文件

@@ -148,6 +148,14 @@ def stats():
148 148
     stats = get_engines_stats()
149 149
     return render('stats.html', stats=stats)
150 150
 
151
+@app.route('/robots.txt', methods=['GET'])
152
+def robots():
153
+    return Response("""User-agent: *
154
+Allow: /
155
+Allow: /about
156
+Disallow: /stats
157
+""", mimetype='text/plain')
158
+
151 159
 @app.route('/opensearch.xml', methods=['GET'])
152 160
 def opensearch():
153 161
     global opensearch_xml