解决方法
是的,你可以很容易地在
Javascript中做到这一点.它看起来像:
var xhr = new XMLHttpRequest(); xhr.onload = function() { if (this.status < 400 && this.status >= 300) { alert('this redirects to ' + this.getResponseHeader("Location")); } else { alert('doesn\'t redirect '); } } xhr.open('HEAD','/my/location',true); xhr.send();
不幸的是,这只适用于您自己的服务器,除非您打入了设置了CORS的服务器.如果您想在任何域中统一工作,您将不得不在服务器端执行操作.