Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save marcus-at-localhost/280e3e0fc0733ed17f7e36369b928f08 to your computer and use it in GitHub Desktop.
Save marcus-at-localhost/280e3e0fc0733ed17f7e36369b928f08 to your computer and use it in GitHub Desktop.
Redirect with HTMX Headers.md

#htmx #kirby

if (kirby()->request()->is('POST')) {

	if(!kirby()->request()->header('HX-Request')){
		go('membersarea');
	}
	
	kirby()->response()->code(202)->header('HX-Redirect', url('/membersarea'));
}

or in plain PHP (most barebone example, e.g. getting headers can be a bit tricky)

if ($_SERVER['REQUEST_METHOD'] === 'POST') {

	if (isset(getallheaders()['Hx-Request'])) {
		header("Location: /membersarea");
	}

	header('HX-Redirect: /membersarea');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment