ComVice Technology Technical Site
all about computer information and technology
-
How to do a page redirection
Posted on September 13th, 2013 No commentsTo create a page redirection, for example, you like to redirect http://www.abc123.com/index.php to http://www.abc123.com/newfolder
1) Create a file named index.php in the public_html folder.
2) Place the following command in the index.php
<? header("Location: http://www.abc123.com/newfolder"); ?>