Answer the question
In order to leave comments, you need to log in
How to make a link from a sub domain to the main domain. Yii2?
I read the documentation, but did not understand how to make a link from the admin.site.ru subdomain to site.ru.
Tell me please)
Answer the question
In order to leave comments, you need to log in
I will supplement padlyuck 's
answer , here is an example of the admin panel config:
'urlManager' => [
'enablePrettyUrl' => true,
'showScriptName' => false,
'rules' => [
],
],
'frontUrlManager' => [
'class' => 'yii\web\urlManager',
'baseUrl' => 'http://site.ru',
'enablePrettyUrl' => true,
'showScriptName' => false,
'rules' => require(__DIR__ . '/../../frontend/config/routes.php'),
],
Yii::$app->frontUrlManager->createAbsoluteUrl('/img/media/product/images/'.$this->media_url);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question