使用.htaccess或PHP重定向到不同的URL

时间:2013-05-18 23:58:50

标签: php .htaccess

我在index.php上有一个表单,它接受用户输入,包含并将用户输入发送到另一个php文件进行处理。

这是index.php的代码:

<?php
if(isset($_GET['q'])){
    include_once "form.php";
    exit(0);
}
?>
<!Doctype HTML>
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <title>Search</title>
    </head>
    <body>
        <form method="get">
         <input type="text" name="q" />
    </form>
    </body>
 </html>

当提交表单时,通过在文本输入聚焦时按Enter键,它将转到

http://mysite.com/?q=textUserEntered(如果之前只访问了域名) 要么 http://mysite.com/index.php?q=textUserEntered(如果之前访问过index.php)

如何在将表单数据传递给form.php时将其转到http://mysite.com/form?q=textUserEnteredhttp://mysite.com/index.php/form?q=textUserEntered

我更喜欢使用PHP的解决方案,但如果唯一的方法是使用.htacess,那么请分享。

我在index.php和form.php的开头尝试了这个,它导航到了URL但没有将数据传递给form.php并导航到404错误页面。

if(!empty($_GET['q']))
{
    header("Location: form?q=".rawurlencode($_GET['q']));
    exit;
}

我无法使用action属性,因为将form.php添加到action属性的值会使网址http://mysite.com/form.php?q=userEnteredText不是http://mysite.com/form?q=userEnteredText

1 个答案:

答案 0 :(得分:1)

只需告诉表单发送数据的位置,您无需重定向:

<form method="get" action="form.php">