Explorar el Código

Redirection des urls avec un slash à la fin

refactoring
Guillaume Bourgeois hace 5 años
padre
commit
78e4c8df9c
Se han modificado 1 ficheros con 2 adiciones y 4 borrados
  1. +2
    -4
      common/config/main.php

+ 2
- 4
common/config/main.php Ver fichero

@@ -41,10 +41,8 @@ $serverName = $_SERVER['SERVER_NAME'] ;
return [
'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
'on beforeRequest' => function () {
$app = Yii::$app;
$pathInfo = $app->request->pathInfo;
if (!empty($pathInfo) && substr($pathInfo, -1) == '/') {
$url = 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();

Cargando…
Cancelar
Guardar