diff options
Diffstat (limited to 'www')
-rw-r--r-- | www/404.php | 4 | ||||
-rw-r--r-- | www/index.php | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/www/404.php b/www/404.php index b9e5ed58..dc19cd26 100644 --- a/www/404.php +++ b/www/404.php @@ -1,3 +1,3 @@ -<?PHP -header("Location: https://".$_SERVER['HTTP_HOST'].$_SERVER['REDIRECT_URL']); +<?php + header("Location: https://" . $_SERVER['HTTP_HOST'] . $_SERVER['REDIRECT_URL']); ?> diff --git a/www/index.php b/www/index.php index 2e218040..9105555e 100644 --- a/www/index.php +++ b/www/index.php @@ -1,4 +1,3 @@ -<?PHP -header("Location: https://".$_SERVER['HTTP_HOST']."/"); +<?php + header("Location: https://" . $_SERVER['HTTP_HOST'] . "/"); ?> - |