mirror of
https://github.com/benbusby/whoogle-search.git
synced 2025-07-31 15:08:42 -04:00
parent
8a2a6f3265
commit
4962659acb
@ -557,6 +557,15 @@ def window():
|
||||
)
|
||||
|
||||
|
||||
@app.route(f'/robots.txt')
|
||||
def robots():
|
||||
response = make_response(
|
||||
'''User-Agent: *
|
||||
Disallow: /''', 200)
|
||||
response.mimetype = 'text/plain'
|
||||
return response
|
||||
|
||||
|
||||
@app.errorhandler(404)
|
||||
def page_not_found(e):
|
||||
return render_template('error.html', error_message=str(e)), 404
|
||||
|
Loading…
x
Reference in New Issue
Block a user