CDN(Content Delivery Network)即内容分发网络,是一种通过将源站内容分发至最接近用户的节点,使用户可就近取得所需内容,解决网络拥堵状况,提高用户访问响应速度和命中率的网络系统。
301跳转是一种HTTP状态码,表示请求的资源已经永久移动到新的URL。当服务器返回301状态码时,浏览器会自动将请求重定向到新的URL。
import requests
def check_redirect(url):
response = requests.get(url, allow_redirects=False)
if response.status_code == 301:
print(f"URL {url} is redirecting to {response.headers['Location']}")
else:
print(f"URL {url} is not redirecting")
# 示例调用
check_redirect("http://example.com")
领取专属 10元无门槛券
手把手带您无忧上云