import codecs
def do_GET_Index(self):
self.set_HTTP_headers(200)
HtmlFile3 = codecs.open('server/entry_template.html', 'r','utf-8')
html_response = HtmlFile3.read()
self.wfile.write(html_reponse)
我在python服务器ip:10.1.0.1
中运行它们在我的Firefox中,我输入了 http://10.1.0.1 但是我在浏览器中看不到任何内容。??
我的entry_template.html文件:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
提前致谢!!!