Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mattlevine/b97c4481c3a022505ec496b8cf2acd02 to your computer and use it in GitHub Desktop.
Save mattlevine/b97c4481c3a022505ec496b8cf2acd02 to your computer and use it in GitHub Desktop.
Mura CMS : Redirect user after logout
<cfscript>
public any function standardPostLogoutHandler($, event) {
// you could redirect the user to any url you want here
location(url=arguments.$.createHREF(filename='about'), addtoken=false);
}
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment