WordPress Redirecting Form Action to Home Page

You have to set the path in the action attribute of your form, e.g.

<form action="/my/form/page" method="post">
...
</form>

If action is missing or empty it will send the form to the current page, if it is just “https://wordpress.stackexchange.com/” it will send it to the home page.