5 lines
85 B
PHP
5 lines
85 B
PHP
|
<?php
|
||
|
header("HTTP/1.0 301 Redirect");
|
||
|
header("Location: motions.php");
|
||
|
exit();
|
||
|
?>
|