Skip to content

Instantly share code, notes, and snippets.

@psics
Created April 24, 2017 11:07
Show Gist options
  • Save psics/a4b5f8b210c145c4cb0a87b9d4df5e97 to your computer and use it in GitHub Desktop.
Save psics/a4b5f8b210c145c4cb0a87b9d4df5e97 to your computer and use it in GitHub Desktop.
Редирект с верхнего регистра на нижний
<?php
$url = mb_strtolower(urldecode($_SERVER['REQUEST_URI']), 'UTF-8') ;
if(urldecode($_SERVER['REQUEST_URI']) != $url) {
header('Location: http://'.$_SERVER['HTTP_HOST'].$url, true, 301) ;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment