Python http.server.HTTPServer 是不是有 RewriteRule / .htaccess 的替代方案?
Posted
技术标签:
【中文标题】Python http.server.HTTPServer 是不是有 RewriteRule / .htaccess 的替代方案?【英文标题】:Is there an alternative of RewriteRule / .htaccess for a Python http.server.HTTPServer?Python http.server.HTTPServer 是否有 RewriteRule / .htaccess 的替代方案? 【发布时间】:2013-09-08 13:48:08 【问题描述】:我的服务器模块(带有http.server.HTTPServer
)可以使用RewriteRule
之类的东西将所有流量重定向到单个cgi 脚本吗?我希望能够在另一个问题中执行here 中显示的操作,但对于我的 python 服务器。
可以使用.htaccess
之类的东西来完成,还是有其他方法?
此外,即使对于简单的本地主机开发服务器,也可以这样做吗? 例如,我正在通过http://localhost:8000/html/index.html 为开发提供文件,并且即使在开发中,我也想从 URL 中隐藏 /html 子文件夹。 如何实现?
【问题讨论】:
不确定你在问什么。 Apache 的 mod_rewrite 与 python 无关。 我在 http.server python 中要求类似 mod_rewrite 的东西 :) 嘿@fj123x 我想知道你是否觉得我的回答有帮助 【参考方案1】:您可以使用自定义脚本来初始化您的服务器并在其中定义您的Routes,例如this article 中的建议:
Python 2:
server.py
import os import posixpath import urllib import BaseHTTPServer from SimpleHTTPServer import SimpleHTTPRequestHandler # modify this to add additional routes ROUTES = ( <- this is the "good stuff", make aliases for your paths # [url_prefix , directory_path] ['/media', '/var/www/media'], ['', '/var/www/site'] # empty string for the 'default' match ) class RequestHandler(SimpleHTTPRequestHandler): def translate_path(self, path): """translate path given routes""" # set default root to cwd root = os.getcwd() # look up routes and set root directory accordingly for pattern, rootdir in ROUTES: if path.startswith(pattern): # found match! path = path[len(pattern):] # consume path up to pattern len root = rootdir break # normalize path and prepend root directory path = path.split('?',1)[0] path = path.split('#',1)[0] path = posixpath.normpath(urllib.unquote(path)) words = path.split('/') words = filter(None, words) path = root for word in words: drive, word = os.path.splitdrive(word) head, word = os.path.split(word) if word in (os.curdir, os.pardir): continue path = os.path.join(path, word) return path if __name__ == '__main__': BaseHTTPServer.test(RequestHandler, BaseHTTPServer.HTTPServer)
然后运行你的脚本:
python server.py
Python 3:
在 Python 3 中,BaseHTTPServer
和 SimpleHTTPServer
模块已合并到 http.server
模块中。所以你将不得不修改上面的脚本如下:
改变
import BaseHTTPServer
from SimpleHTTPServer import SimpleHTTPRequestHandler
到
import http.server
(如果您这样做,则应将调用修改为http.server.SimpleHTTPRequest
等)
或
from http.server import BaseHTTPServer, SimpleHTTPServer, SimpleHTTPRequestHandler
(使用此选项调用保持与原始脚本相同)
然后运行服务器脚本:python server.py
在您的情况下:
您应该修改ROUTES
变量以满足您的需要。 例如,您想从您的网址中隐藏/html
文件夹:
ROUTES = (
['', '/exact/path/to/folder/html'],
['/another_url_path', '/exact/path/to/another/folder'],
...
)
现在,如果您点击:http://localhost:8000/index.html
,您将进入您的主页。
注意:
默认情况下,此脚本将在执行到 域 url 时提供文件夹中包含的文件(例如,我在 Documents 文件夹中有 server.py
,然后当我运行它时, http://localhost:8000 url 将服务于我的 Documents 文件夹)。
您可以通过 Routes 更改此行为(请参阅代码上的“默认”匹配注释)或将脚本放在项目根文件夹中并从那里启动它。
【讨论】:
【参考方案2】:John Moutafis's answer 对我开始很有帮助,但除了他关于导入的 cmets 之外,还需要一些微调才能在 python3 上运行。
进口应该是
from http.server import HTTPServer, SimpleHTTPRequestHandler
您还需要将 urllib 导入更改为:
from urllib.parse import unquote
那么主要应该是这样的:
if __name__ == '__main__':
myServer = HTTPServer(('0.0.0.0', 8000), RequestHandler)
print("Ready to begin serving files.")
try:
myServer.serve_forever()
except KeyboardInterrupt:
pass
myServer.server_close()
print("Exiting.")
【讨论】:
以上是关于Python http.server.HTTPServer 是不是有 RewriteRule / .htaccess 的替代方案?的主要内容,如果未能解决你的问题,请参考以下文章