我正在使用使用不同搜索方法的电子商务引擎脚本。
而不是像这样使用 GET 的 URL:
http://search.com/searchc?q=the+query
它用
http://search.com/searchc/the+query
我如何制作一个表单来 POST 或 GET 到那个,因为这个表单会生成 URL
http://search.com/searchc/?q=the+query
<form action="/searchc/" method="post">
<input type="text" id="q" name="q">
<input type="submit" value="go">
</form>
也试过这个(获取或发布对这两者都不起作用)
<form action="/searchc/" method="post">
<input type="text" id="" name="">
<input type="submit" value="go">
</form>