문제

I need to add/register a css file but I cant get the path to the frontend;

What's the Yii Yii::app()->baseUrl equivalent in Yii 2 ?

I tryed:

Yii::$app->basePath and it gives me : c:/wamp/www/project/frontend

I only need /project/frontend

도움이 되었습니까?

해결책

Yii::app()->baseUrl equivalent in Yii 2 is

  \Yii::$app->request->BaseUrl

다른 팁

try this

   $baseUrl = Yii::app()->getBaseUrl(true);
   $scriptUrl = Yii::app()->request->scriptUrl;
   $themeUrl = Yii::app()->theme->getBaseUrl();
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top