ReRoute "My Company" to FE/web/site/index [SOLVED]

Hi all,

When downloading yii2 you have an option to click on “My Company” which results in sample_site/frontend/web/ . You also have the option to click on “Home” which results in sample_site/frontend/web/site/index.

I would like to ReRoute the “My Company” to sample_site/frontend/web/site/index for the sake of keeping a consistent path to an image used in the brandLabel. What is the best way to do this?

Thanks

Hi!

Not sure if I understoog the problem correct…

But one possibility is for example:

In:

sample_site/frontend/views/layouts/main.php

Edit:




NavBar::begin([

	'brandLabel' => 'My Company',

	'brandUrl' => Yii::$app->homeUrl, // change this URL

	'options' => [

		'class' => 'navbar-inverse navbar-fixed-top',

	],

]);



Regards

MetaCrawler, Thank you for your quick reply. In a search to write the proper syntax I came across the following: link071 which simply changes the images link to:


 'brandLabel' => '<img src= "' . Yii::$app->request->baseUrl .  '/images/logo.png" alt=""  > ',

Thanks again!