BaseHTTPServer无法识别CSS文件

时间:2010-07-20 14:41:39

标签: python

我正在编写一个非常基本的网络服务器(好吧,尝试),虽然它现在正在提供HTML,但我的CSS文件似乎根本不被识别。我也在我的机器上运行Apache2,当我将文件复制到docroot时,页面正确提供。我也检查了权限,他们似乎没事。这是我到目前为止的代码:

class MyHandler(BaseHTTPRequestHandler):
     def do_GET(self):
           try:
                if self.path == "/":
                     self.path = "/index.html"
                if self.path == "favico.ico":
                     return
                if self.path.endswith(".html"):
                     f = open(curdir+sep+self.path)
                     self.send_response(200)
                     self.send_header('Content-type', 'text/html')
                     self.end_headers()
                     self.wfile.write(f.read())
                     f.close()
                     return
                return
            except IOError:
                self.send_error(404)
      def do_POST(self):
            ...

为了提供CSS文件,我需要做些什么特别的事情吗?

谢谢!

2 个答案:

答案 0 :(得分:6)

您可以将其添加到if子句

            elif self.path.endswith(".css"):
                 f = open(curdir+sep+self.path)
                 self.send_response(200)
                 self.send_header('Content-type', 'text/css')
                 self.end_headers()
                 self.wfile.write(f.read())
                 f.close()
                 return

可选地

import os
from mimetypes import types_map
class MyHandler(BaseHTTPRequestHandler):
    def do_GET(self):
       try:
            if self.path == "/":
                 self.path = "/index.html"
            if self.path == "favico.ico":
                 return
            fname,ext = os.path.splitext(self.path)
            if ext in (".html", ".css"):
                 with open(os.path.join(curdir,self.path)) as f:
                     self.send_response(200)
                     self.send_header('Content-type', types_map[ext])
                     self.end_headers()
                     self.wfile.write(f.read())
            return
        except IOError:
            self.send_error(404)

答案 1 :(得分:0)

您需要添加一个处理css文件的案例。尝试更改:

if self.path.endswith(".html") or self.path.endswith(".css"):