сначала попадать в главный роутинг (фронт контроллер). То бишь корневой index.php.
$('form.article').on('submit', function (event) {
event.preventDefault();
let form = $(this);
$.post(form.attr('action'), form.serialize(), function (response) {...});
});
$_SESSION['form'] = json_encode($_POST);
, ну и потом обратный процесс $_POST = json_decode($_SESSION['form'] ?? '{}', true);
.