php - Yii: Redirect in controller to external site in new tab -
is possible redirect external url inside yii controller , open new page in new tab?
$this->redirect("http://www.google.com");
this works fine, opens in same tab. there way open url in different tab?
thanks
opening new tab on redirect isn't related server. can't force server open new tab when redirect. therefore should control in client side. example can add target: "_blank"
attribute inside links.
Comments
Post a Comment