Skip to content

Instantly share code, notes, and snippets.

View yuki's full-sized avatar

Rubén Gómez Olivencia yuki

View GitHub Profile
@yuki
yuki / server.py
Created October 17, 2022 17:46 — forked from faelp22/server.py
Python3 SimpleHTTPServer for Static Serving (VueJS/ React / Angular / Ember) in HTML5 mode (a la mod_rewrite)
#!/usr/bin/env python
'''
Based on https://gist.github.com/chrisbolin/2e90bc492270802d00a6
'''
import os
from http.server import HTTPServer, SimpleHTTPRequestHandler
from urllib.parse import urlparse