# coding:utf-8
import requests
# 请求头
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0"
}
s = requests.session()
# 打开我的随笔
r = s.get('https://i.cnblogs.com/EditPosts.aspx?opt=1',
headers=headers,
allow_redirects=True, # 允许重定向, False不允许重定向
verify=False)
# 打印状态码,自动处理重定向请求
print r.status_code
new_url = r.headers["Location"] # 获取重定向后的url
print new_url