我有一个网站:
example.com/index.html
有一个子文件夹(subsite):
example.com/subsite/different_index.html
different_index.html 包含一个表单:
<FORM action="different_index.html?action=edit">
但是,当单击此表单上的提交输入按钮时,页面会尝试重定向到:
example.com/subsite/subsite/different_index.html
我已经尝试使表单操作成为所需的确切网址:
<FORM action="example.com/subsite/different_index.html?action=edit"> <!-- target self -->
但我仍然得到:
example.com/subsite/subsite/different_index.html
子网站在 URL 中重复。
任何想法如何正确定位此表单?