URL重定向基于输入,但如果输入的URL不存在则发送回同一页面

时间:2011-08-11 15:51:59

标签: forms url redirect input error-handling

这段代码几乎完全符合我的需要:

<form onsubmit="location.href='http://www.mysite.com/' + document.getElementById('myInput').value; return false;">
  <input type="text" id="myInput" />
  <input type="submit" />
</form>

唯一缺少的是,如果用户输入的输入不存在,我希望它不带它们或重定向回同一页面。现在它将他们带到一个错误页面,他们必须使用后退按钮返回并再试一次 任何帮助将不胜感激。

谢谢

1 个答案:

答案 0 :(得分:0)

您是否可以编写一个用作表单操作的小PHP脚本?在此脚本中,您可以检查提供的用户输入并验证URL是否存在。如果是,您可以执行header()重定向到给定页面。如果它不存在,您可以将它们重定向到所需的页面。

<?php
$input = $_POST['myInput']; // You'll also need to add in a name='' tag in the HTML!
$desired_page = ''; // page you want to go to if inputted file cannot be found

if (file_exists($input)) {
  header("Location: $input");
}
else {
  header("Location: $desired_page");
}

需要大量精炼,但这就是想法。那会做你想要的吗?