ボタンにformaction属性を設定すると、ボタンごとにフォームの遷移先を変えることができます。

formaction属性をつけた場合そのボタンを押した場合は、formタグのactionを上書きする動作となります。

(例)

<form action="save.html" method="post">
    <button type="submit">保存</button>
    <button type="submit" formaction="index1.html">index1.htmlに送る</button>
    <button type="submit" formaction="index2.html">index2.htmlに送る</button>
</form>