@@ -43,7 +43,7 @@ return [ | |||
'on beforeRequest' => function () { | |||
if(method_exists(Yii::$app->request, 'getAbsoluteUrl')) { | |||
$url = Yii::$app->request->getAbsoluteUrl(); | |||
if (!empty($url) && substr($url, -1) == '/' && substr($url, -5) != '.net/') { | |||
if ($_SERVER['SERVER_NAME'] != 'localhost' && !empty($url) && substr($url, -1) == '/' && substr($url, -5) != '.net/') { | |||
$url = substr($url, 0, strlen($url) - 1); | |||
Yii::$app->getResponse()->redirect($url, 301); | |||
Yii::$app->end(); |