Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature currently requires accessing the site using the built-in Safari browser.
if(isset($_SERVER['REQUEST_URI']) && $_SERVER['REQUEST_URI'] != '') {
header('location:http://www.newsite.com'.$_SERVER['REQUEST_URI']);
} else {
header('location:http://www.newsite.com/');
}
die();
<?php
switch($_SERVER['REQUEST_URI']) {
case '/file1.html':
header('location:http://www.yoursite.com/otherfile.html');
break;
case '/file2.html':
header('location:http://www.yoursite.com/differentfile.html');
break;
case '/directory1/somefile.html':
header('location:http://www.yoursite.com/yetanotherfile.html');
break;
default:
header('location:http://www.yoursite.com/');
break;
}
die();
?>
TrueBlue said:Maybe there is bug is HSphere.
TrueBlue said:Here is a permanent redirect from my control panel
links.htm->http://www.sample.com/police-departments.asp ( perm )
Or maybe it is because I am going from HTML to ASP.