如何使用Python进行简单的http重定向?

时间:2011-03-16 04:05:20

标签: python http redirect header

如何使用Python进行简单的http重定向? 不使用meta

更新:

我在Apache的cgi-bin目录中使用Python 2.7.1作为CGI。

1 个答案:

答案 0 :(得分:5)

使用当前设置重定向(CGI apache):

print("Location:http://newurl.com/foobar")
print # to end the CGI response headers.