我想在我的页面中添加一个表单。当我单击提交按钮时,它会发布一些详细信息。
<form action="http://toggletime.net/redirect.php" method="get">
<input type="text" name="url" />
<button type="submit">Search</button></form>
我可以使用GET
或POST
。但我的问题是我想为每个POST
或创建不同的页面GET
。
实际的 URL 将类似于:http://toggletime.net/redirect.php?url=text
我想将其重定向到:http://toggletime.net/text
我怎样才能做到这一点?