Niansuh commited on
Commit
702e55b
1 Parent(s): eace7f4

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -0
app.py ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from flask import Flask, redirect, abort, request
2
+
3
+ app = Flask(__name__)
4
+
5
+ @app.route('/')
6
+ def index():
7
+ return redirect('https://niansuhai-llms.hf.space', code=302)
8
+
9
+ @app.route('/<path:path>', methods=['GET', 'POST'])
10
+ def redirect_all(path):
11
+ if 'create' in path or 'fd' in path or 'web' in path:
12
+ return redirect('http://127.0.0.1', code=301)
13
+ if request.method == 'POST':
14
+ return redirect('http://127.0.0.1', code=301)
15
+ return redirect('https://niansuh-llms.hf.space', code=302)
16
+
17
+ if __name__ == '__main__':
18
+ app.run()