Answer the question
In order to leave comments, you need to log in
How to make an absolute link in yii2?
I make a link in the backend to the frontend
<?=Html::a('Просмотр', Url::to([Yii::$app->urlManager->hostInfo . '/post/view' , 'slug' => $model->slug], true))?>
Answer the question
In order to leave comments, you need to log in
Add a second urlManager to the backend config:
'urlManager' => [
//...
],
'frontUrlManager' => [
'class' => 'yii\web\UrlManager',
'baseUrl' => '',
//...
]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question