How to redirect users to another page?

How to redirect page using file?

In order to setup an easy redirect page, simply create an index.php file in the directory you wish to redirect from with the following content:-
<?php header("Location: http://www.newurl.com/"); ?>

* Kindly take note that http://www.newurl.com is the URL you wish the users to be redirected too.
This can also be a file within a directory/folder:
<?php header("Location: yourdirectory/indexfile.php"); ?>

How to redirect page using .htaccess?

You may also create redirect page using htaccess. Kindly note that htaccess only support under Linux server/machine.

Redirect domain.com to www.domain.com  

Please insert the following under the .htaccess file

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]

Redirect www.domain.com to domain.com 

Please insert the following under the .htaccess file

RewriteEngine On
RewriteCond %{HTTP_HOST} !^domain.com$ [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [L,R=301]
 


 
 

Comments