How to forward the website to another URL?

Forwarding the website to another URL -

1. Using index.php file -

1. Create the page as index.php file under public_html directory.
2. Add below code -
<?php
header("Location: http://forwarding_page_name/to/go.html");
?>

2. Using htaccess file -

1. Create .htaccess file under public_html directory.
2. Add below code -
Redirect 301 / [b] http://forwarding_page_name/to/go.html[/b]

You can opt to any of the below method.

Note -
You will need to replace the name of website in the 'http://forwarding_page_name/to/go.html' where you would like to forward your site.
  • 1 Users Found This Useful
Was this answer helpful?

Related Articles

How to install xmlrpc?

Installing xmlrpc module on Directadmin. Seems simple isn't it ? Might find many articles on the...

How to run CGI script using any directory or /~username/cgi-bin?

If you would like to force Apache to allow CGI script then just follow below simple steps - 1....

MySql Database has gone away

You may come across the error "MySql Database has gone away". I came across this error while...

How to list all files under directory?

When there is no 'index.php' or 'index.html' file and you'd like to display all the files under...

How to upgrade the php from 5.4 to 5.6?

If you are running php 5.4 on the server and want it to be upgraded to 5.6 . Additionally, your...

Powered by WHMCompleteSolution