How to create a temporary 302 redirect via htaccess

An easy way to create a temporary redirect from one page to another web page is to use the 302 redirect directive with an htaccess file. With a temporary redirect search engines are aware this is not going to be a permanent redirect and will continue to update their listing for it.


Create an .htaccess file and place the following contents at the top:

 RewriteEngine On

 Options +FollowSymLinks


Example:


Redirect 302 /article.html http://www.example.com/new-article.html


To redirect an entire website to a new url use the following:

Redirect 302 / http://www.thenewwebsite.com


Once created upload the file to your public_html folder with the file manager or any FTP program. If the file already exists you can insert the line to the top of that file instead.




Creating a temporary 302 redirect via .htaccess

  • 336 Users Found This Useful

Was this answer helpful?

Related Articles

Default Nameservers

If you have signed up for an Ultra 1x, Ultra Unlimited, or Ultra Unlimited Pro plan the following...

Redirect Internet Explorer visitors to a supported browsers page

Redirect users of Internet Explorer to a supported browsers page or any other page.  To do this,...

Set CORS header to Allow Access for any Incoming Domain

The following may be used to set to always set the CORS header for any incoming domains without...

What is a virtual Domain?

A virtual domain is the base URL of the domain name. Examples include yourdomain.com, and...

Why do I get emails for cron jobs?

This is the default. If you would like to disable receiving emails when a cron job runs append...