aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--server.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/server.py b/server.py
index 4b39b5a..ac30156 100644
--- a/server.py
+++ b/server.py
@@ -81,6 +81,11 @@ def site_dispatch(env, start_response):
yield error_code('403 Forbidden', start_response)
return
+ # redirect localhost:8080 to localhost:8080/https://youtube.com
+ if path == '' or path == '/':
+ start_response('302 Found', [('Location', '/https://youtube.com')])
+ return
+
try:
env['SERVER_NAME'], env['PATH_INFO'] = split_url(path[1:])
except ValueError: