how to remove url (/web/index.php) yii 2 and set route with parameter with clean url?

后端 未结 4 652
栀梦
栀梦 2020-12-17 03:11

first question: i already remove index.php, but i want remove /web also. this is my .htaccess

RewriteEngine on
# If a         


        
4条回答
  •  庸人自扰
    2020-12-17 03:48

    You can add the information in file configuration to remove /web:

    $baseUrl = str_replace('/web', '', (new Request)->getBaseUrl());
    
    return [
        ...
        'components' => [
                'request' => [
                    'baseUrl' => $baseUrl,
         ],
          ...
        ]
    ]
    

提交回复
热议问题