core/redirect.php

11 lines
200 B
PHP
Raw Normal View History

2022-12-11 13:55:49 +05:00
<?php
/*редиректы анти сапе */
switch (trim($_SERVER['REQUEST_URI'])) {
case '/?id=8':
header('HTTP/1.1 301 Moved Permanently');
header('Location: /');
break;
default:
}
?>