0
我使用下面的配方來獲取HTTP響應代碼,但它沒有得到3xx的代碼。如何防止urllib2跟蹤http請求的重定向?
import urllib2
for url in ["http://entrian.com/", "http://entrian.com/does-not-exist/"]:
try:
connection = urllib2.urlopen(url)
print connection.getcode()
connection.close()
except urllib2.HTTPError, e:
print e.getcode()
如何禁用urllib2上的重定向處理?
也許[此頁](http://www.diveintopython.net/http_web_services/redirects。 HTML)可能會有所幫助。 – 2013-01-31 12:42:42