Redirect - Knowledge Base Archives - Hivelocity Hosting https://www.hivelocity.net/kb/tag/redirect/ Dedicated Servers, Private Cloud & Colocation Wed, 17 Jan 2024 14:39:22 +0000 en-US hourly 1 https://wordpress.org/?v=6.6 Redirecting a URL in Hsphere https://www.hivelocity.net/kb/redirect-url-hsphere/ https://www.hivelocity.net/kb/redirect-url-hsphere/#respond Sun, 05 Dec 2010 06:51:05 +0000 https://kb.hivelocity.net/?p=3128 Watch this tutorial to learn how to redirect a URL in Hsphere.

The post Redirecting a URL in Hsphere appeared first on Hivelocity Hosting.

]]>
Watch this tutorial to learn how to redirect a URL in Hsphere.

The post Redirecting a URL in Hsphere appeared first on Hivelocity Hosting.

]]>
https://www.hivelocity.net/kb/redirect-url-hsphere/feed/ 0
Creating a Mail Forwarder (Redirect) in Hsphere https://www.hivelocity.net/kb/create-a-mail-forwarder-redirect-hsphere/ https://www.hivelocity.net/kb/create-a-mail-forwarder-redirect-hsphere/#respond Sun, 05 Dec 2010 06:35:45 +0000 https://kb.hivelocity.net/?p=3114 Watch this tutorial to learn how to create a mail forwarder (redirect) in Hsphere.

The post Creating a Mail Forwarder (Redirect) in Hsphere appeared first on Hivelocity Hosting.

]]>
Watch this tutorial to learn how to create a mail forwarder (redirect) in Hsphere.

The post Creating a Mail Forwarder (Redirect) in Hsphere appeared first on Hivelocity Hosting.

]]>
https://www.hivelocity.net/kb/create-a-mail-forwarder-redirect-hsphere/feed/ 0
Redirecting a URL in DirectAdmin https://www.hivelocity.net/kb/redirecting-a-url-in-directadmin/ https://www.hivelocity.net/kb/redirecting-a-url-in-directadmin/#respond Sat, 04 Dec 2010 10:50:52 +0000 https://kb.hivelocity.net/?p=2922 Watch this tutorial to learn how to redirect a URL in DirectAdmin.

The post Redirecting a URL in DirectAdmin appeared first on Hivelocity Hosting.

]]>
Watch this tutorial to learn how to redirect a URL in DirectAdmin.

The post Redirecting a URL in DirectAdmin appeared first on Hivelocity Hosting.

]]>
https://www.hivelocity.net/kb/redirecting-a-url-in-directadmin/feed/ 0
Creating an Email Forwarder (Redirect) in DirectAdmin https://www.hivelocity.net/kb/creating-an-email-forwarder-redirect-in-directadmin/ https://www.hivelocity.net/kb/creating-an-email-forwarder-redirect-in-directadmin/#respond Sat, 04 Dec 2010 10:30:48 +0000 https://kb.hivelocity.net/?p=2907 Watch this tutorial to learn how to create an email forwarder (redirect) in DirectAdmin.

The post Creating an Email Forwarder (Redirect) in DirectAdmin appeared first on Hivelocity Hosting.

]]>
Watch this tutorial to learn how to create an email forwarder (redirect) in DirectAdmin.

The post Creating an Email Forwarder (Redirect) in DirectAdmin appeared first on Hivelocity Hosting.

]]>
https://www.hivelocity.net/kb/creating-an-email-forwarder-redirect-in-directadmin/feed/ 0
Redirecting a URL in cPanel https://www.hivelocity.net/kb/redirecting-a-url-in-cpanel/ https://www.hivelocity.net/kb/redirecting-a-url-in-cpanel/#respond Sat, 04 Dec 2010 09:17:42 +0000 https://kb.hivelocity.net/?p=2840 Watch this tutorial to learn how to redirect a URL in cPanel.

The post Redirecting a URL in cPanel appeared first on Hivelocity Hosting.

]]>
Watch this tutorial to learn how to redirect a URL in cPanel.

The post Redirecting a URL in cPanel appeared first on Hivelocity Hosting.

]]>
https://www.hivelocity.net/kb/redirecting-a-url-in-cpanel/feed/ 0
redirect using .htaccess https://www.hivelocity.net/kb/redirect-using-htaccess/ https://www.hivelocity.net/kb/redirect-using-htaccess/#respond Sun, 14 Nov 2010 11:56:44 +0000 https://kb.hivelocity.net/?p=2603 1) Temporary Redirect : Redirect temp / https://www.test.com This will redirect https://test.com — to — https://www.test.com Redirect temp /folder https://www.test.com/folder This will redirect https://test.com/folder — to — https://www.test.com/folder 2) Permanant Redirect : Redirect permanent / https://www.test.com This will redirect https://test.com — to — https://www.test.com Redirect permanent /folder https://www.test.com/folder This will redirect https://test.com/folder — to — …

redirect using .htaccess Read More »

The post redirect using .htaccess appeared first on Hivelocity Hosting.

]]>
1) Temporary Redirect :

Redirect temp / https://www.test.com

This will redirect https://test.com — to — https://www.test.com

Redirect temp /folder https://www.test.com/folder

This will redirect https://test.com/folder — to — https://www.test.com/folder

2) Permanant Redirect :

Redirect permanent / https://www.test.com

This will redirect https://test.com — to — https://www.test.com

Redirect permanent /folder https://www.test.com/folder

This will redirect https://test.com/folder — to — https://www.test.com/folder

The post redirect using .htaccess appeared first on Hivelocity Hosting.

]]>
https://www.hivelocity.net/kb/redirect-using-htaccess/feed/ 0
Forward a website to another url https://www.hivelocity.net/kb/how-do-i-forward-a-website-to-another-url-2/ https://www.hivelocity.net/kb/how-do-i-forward-a-website-to-another-url-2/#respond Sun, 14 Nov 2010 09:40:14 +0000 https://kb.hivelocity.net/?p=2274 There are several ways to accomplish this task, but the simplest to understand is to use php. To do this, you need to create the page that will do the forwarding. This can be any page, as long as it ends in “.php”. If you are trying to redirect a domain, you’d create “index.php” inside …

Forward a website to another url Read More »

The post Forward a website to another url appeared first on Hivelocity Hosting.

]]>
There are several ways to accomplish this task, but the simplest to understand is to use php.

To do this, you need to create the page that will do the forwarding. This can be any page, as long as it ends in “.php”. If you are trying to redirect a domain, you’d create “index.php” inside the public_html directory.

Once you decide which page you will use, then create the file and enter the following text:

header(“Location: https://whereyouwant.com/to/go.html“);
?>
Where https://whereyouwant.com/to/go.html is the location that you want the page to forward to. You can use local values, ie: /page.html, or full urls as in the above example (https://..etc.)

The post Forward a website to another url appeared first on Hivelocity Hosting.

]]>
https://www.hivelocity.net/kb/how-do-i-forward-a-website-to-another-url-2/feed/ 0
How do I forward a website to another URL? https://www.hivelocity.net/kb/how-do-i-forward-a-website-to-another-url/ https://www.hivelocity.net/kb/how-do-i-forward-a-website-to-another-url/#respond Sat, 13 Nov 2010 14:21:18 +0000 https://kb.hivelocity.net/?p=1617 There are several ways to accomplish this task, but the simplest to understand is to use php. To do this, you need to create the page that will do the forwarding. This can be any page, as long as it ends in “.php”. If you are trying to redirect a domain, you’d create “index.php” inside …

How do I forward a website to another URL? Read More »

The post How do I forward a website to another URL? appeared first on Hivelocity Hosting.

]]>
There are several ways to accomplish this task, but the simplest to understand is to use php.

To do this, you need to create the page that will do the forwarding. This can be any page, as long as it ends in “.php”. If you are trying to redirect a domain, you’d create “index.php” inside the public_html directory.

Once you decide which page you will use, then create the file and enter the following text:

header(“Location: https://whereyouwant.com/to/go.html”);
?>
Where

https://whereyouwant.com/to/go.html

is the location that you want the page to forward to. You can use local values, ie: /page.html, or full urls as in the above example (https://..etc.)

The post How do I forward a website to another URL? appeared first on Hivelocity Hosting.

]]>
https://www.hivelocity.net/kb/how-do-i-forward-a-website-to-another-url/feed/ 0