Is there a way to redirect to another page that is not within joomla... say google? $mainframe->redirect( JURI::base() . 'http://www.google.com' ); does not work, $mainframe->redirect looks to redirect to only Joomla files.
Thanks,
timgerr
Redirect
Moderators: tjay, seadap, Rogue4ngel, matthewhayashida
Forum rules
Re: Redirect
try
$mainframe->redirect( 'http://www.google.com' );
works for me
$mainframe->redirect( 'http://www.google.com' );
works for me