当我使用命令启动http服务器时:

python -m SimpleHTTPServer

如何更改默认的404页面?

最佳答案

使用命令行,这是不可能的。

您应该制作如下脚本:

import BaseHTTPServer
import SimpleHTTPServer

class MyHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
    error_message_format = '''
    custom error message
    '''

BaseHTTPServer.test(MyHandler, BaseHTTPServer.HTTPServer)

关于python - 如何在使用python SimpleHTTPServer时更改默认的404页面,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18351388/

10-15 12:57