有谁知道如何在 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?