6 lines
104 B
PHP
6 lines
104 B
PHP
<?php
|
|
http_response_code(301);
|
|
header("Status: 301");
|
|
header("Location: index.html#!index.md");
|
|
?>
|