Explorar el Código

Redirection des urls avec un slash à la fin

refactoring
Guillaume Bourgeois hace 5 años
padre
commit
2429bf4fad
Se han modificado 1 ficheros con 7 adiciones y 5 borrados
  1. +7
    -5
      common/config/main.php

+ 7
- 5
common/config/main.php Ver fichero

@@ -41,11 +41,13 @@ $serverName = $_SERVER['SERVER_NAME'] ;
return [
'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
'on beforeRequest' => function () {
$url = Yii::$app->request->getAbsoluteUrl();
if (!empty($url) && substr($url, -1) == '/') {
$url = substr($url, 0, strlen($url) - 1);
Yii::$app->getResponse()->redirect($url, 301);
Yii::$app->end();
if(method_exists(Yii::$app->request, 'getAbsoluteUrl')) {
$url = Yii::$app->request->getAbsoluteUrl();
if (!empty($url) && substr($url, -1) == '/') {
$url = substr($url, 0, strlen($url) - 1);
Yii::$app->getResponse()->redirect($url, 301);
Yii::$app->end();
}
}
},
'components' => [

Cargando…
Cancelar
Guardar