我有一个像
<form action="abc/1" method="post">
</form>
我希望每次提交此表单时我的 URL 都保持不变,就像假设我当前的 URL 是
http://localhost/abc/1 after form submit it should be again
http://localhost/abc/1
but instead this it become
http://localhost/abc/1
http://localhost/abc/abc/1
http://localhost/abc/abc/abc/1 each time I press submit button in form.
它与代码点火器中 mvc 的 URL 方案有关