CGIHTTPRequestHandler run php or python script in python
问题 I'm writing a simple python web-server on windows.. it works but now I want to run dynamic scripts (php or py) and not only html pages.. here is my code: from BaseHTTPServer import HTTPServer from CGIHTTPServer import CGIHTTPRequestHandler class RequestsHandler(CGIHTTPRequestHandler): cgi_directories = ["/www"] #to run all scripts in '/www' folder def do_GET(self): try: f = open(curdir + sep + '/www' + self.path) self.send_response(200) self.send_header('Content-type', 'text/html') self.end