我正在尝试使用 urllib2 打开一个页面
req = urllib2.Request("http://1033kissfm.com",
headers={'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:11.0) Gecko/20100101 Firefox/11.0'})
response = urllib2.urlopen(req)
rstPage = response.read()
响应是
<html>
<head><title>400 Bad Request</title></head>
<body bgcolor="white">
<center><h1>400 Bad Request</h1></center>
<hr><center>nginx/1.0.3</center>
</body>
</html>
但是当我在浏览器中打开这个网址时,它工作正常,这是网址
http://1033kissfm.com
在浏览器中它重定向到
http://www.1033kissfm.com/pages/main
页。