0

有谁知道如何在 php 中为提交操作重写 URL?

例子:

我有如下代码:

我使用以下链接 www.assignment.com 调用该页面(我已将索引设置为 test.php),test.php 将显示以下代码。

<form action="test.php" method="post">
  <input type="text" name="phone" value="">
  <input class="submit_btn" type="submit" name="submit" id="submit" value="SUBMIT">
</form>

当我单击提交按钮时,它将发布到 test.php 以执行操作并显示相同的输入页面。但是,一旦单击提交按钮,url 链接将变为 www.assignment.com/test.php。有什么方法可以在提交后将 URL 重写为 www.assignment.com 而不是 www.assignment.com/test.php?

4

2 回答 2

1

您可以在脚本header("Location: www.assignment.com");末尾使用。test.php

于 2012-05-30T09:42:24.087 回答
1

如果您在加载test.php时运行http://assignment.com/,您可以将表单目标更改为:

<form action="/" method="post">
于 2012-05-30T09:44:58.550 回答