Skip to content

Instantly share code, notes, and snippets.

@proweb
Created June 9, 2013 21:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save proweb/5745265 to your computer and use it in GitHub Desktop.
Save proweb/5745265 to your computer and use it in GitHub Desktop.
How to redirect using the Joomla API
// joomla 2.5
$app = JFactory::getApplication();
$link = 'http://www.domain.com/';
$msg = 'You have been redirected to domain.com';
$app->redirect($link, $msg, $msgType='message');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment