<?php header('Location: /index');

PHP
<?php
// This will just redirect you to example.com
$url = "https://example.com";
header("Location: $url");  
?><?php
// This will just redirect you to example.com
header("Location: https://example.com");  
?>
Source

Also in PHP: