소스 검색

[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