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

How do I hide my domain WHOIS information?

If you do not wish to have your contact information shown when someone does a WHOIS report on...

How can I change the default page / document?

Create a .htaccess file, include the below information into it and upload it to the public_html...

What are these vt directories?

Those are FrontPage extension directories. If you have and no longer need them you can uninstall...

vBulletin fsockopen() [function.fsockopen]: unable to connect

When setting up mail in vBulletin be sure you are using localhost for the mail server along with...

Sub-Domain times out

When you add a sub-domain and it times out make sure you do not have redirection set from that...