1
 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>

提前致谢!!!

4

0 回答 0