Skip to content
Advertisement

yii2: set another site for link with Html::a

i have a link (href) to another site but i have problem

this is my code :

          return Html::a('Create More', ["https://face.com/"], ['class' => 'btn btn-primary', 'role' => 'modal-remote']);
       

why my link is a new action? i want change my baseurl to https://face.com/ but dosnt work

this is my new link:

https://niniplus.com/newadmin/index.php/https://face.com

Advertisement

Answer

By just removing the array ["https://face.com/"], an absolute url will be return.

return Html::a('Create More', "https://face.com/", ['class' => 'btn btn-primary', 'role' => 'modal-remote']);
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement