URL重定向基于输入,但如果输入url不存在,则不重定向无法让PHP工作

时间:2011-08-11 18:07:11

标签: javascript forms url redirect error-handling

@themask 您好,感谢您的帮助,我已经购买了PHP,现在只有这个代码

<script>
document.forms[0].onsubmit = 
    function() {
       var to = document.getElementById('myInput').value;
       var ajax = new XMLHttpRequest; 
       ajax.onreadystate = function() {
            if(this.readyState == 4 && this.status != 404) {
                window.locaiton.replace(to);
            } else {
                window.location.replace('http://www.mysite.com/incontinence/protective_underwear/presto_protective_underwear/');
            }
    }; 
    ajax.open('GET',to);
    ajax.send(null);
};
      </script>
      <form onsubmit="location.href='http://www.mysite.com/coupons/' + document.getElementById('myInput').value; return false;" >
  <input type="text" id="myInput" />
  <input name="Submit" type="submit" id="Submit" />
</form>

但如果使用了错误的代码,它仍会向我发送错误的网址。就像它一起跳过java一样。

任何额外的帮助都会很棒。

谢谢你, 米卡

谢谢你, 米卡

2 个答案:

答案 0 :(得分:2)

尝试使用get_headers()

$headers = get_headers('http://www.activelifemed.com/incontinence/protective_underwear/presto_protective_underwear/')
if($headers[0] == 'HTTP/1.1 200 OK'){
  //exists
}
else{
  //doesn't exist
}

http://www.php.net/manual/en/function.get-headers.php

答案 1 :(得分:0)

您可以使用JavaScript制作:

document.forms[0].onsubmit = 
    function() {
       var to = document.getElementById('myInput').value;
       var ajax = new XMLHttpRequest; 
       ajax.onreadystate = function() {
            if(this.readyState == 4 && this.status != 404) {
                window.locaiton.replace(to);
            } else {
                window.location.replace('http://www.mysite.com/incontinence/protective_underwear/presto_protective_underwear/');
            }
    }; 
    ajax.open('GET',to);
    ajax.send(null);
};