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

  • 170 Users Found This Useful

Was this answer helpful?

Related Articles

My index page does not load - Why not?

Filenames are case sensitive. Be sure you have an index filename all in lower case. Examples are...

Mounting Samba Share in Linux for Startup

The following may be used to mount a samba share via your /etc/fstab file for bootup on...

Do you support TeamSpeak?

We do not support Teamspeak on our servers but allow you to create a subdomain such as...

htaccess - Allow Let's Encrypt to Validate and Renew

When receiving the following Let's Encrypt error message:domain.com: The SSL certificate expires...

How can I tell how much disk space I have available?

To see how much disk space you have available, go to your control panel and on the left side of...