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

Why can I not ping my domain?

For security purposes we have closed off the ICMP port which is used for ping.

How can I change the index listing in a directory?

You can change the initial page that is sent to client requests when a directory is accessed by...

Why is the server load status red?

The server load status will be red if the server is under a little more stress than usual. This...

html or htm parsed as shtml not working

To parse .html or .htm files as .shtml add the following to your .htaccess file in the...

Prevent CloudFlare from Loading a js or Script

Sometimes CloudFlare / Rocket Loader can have problems with a script and hose it up. To have...