India Forums .Info

Discuss Cars, Bikes, Jobs, Romance, Marriage, Jobs, Real Estate, Programming and more..
It is currently Wed Jan 07, 2009 4:18 am

All times are UTC + 5:30 hours




Post new topic Reply to topic  [ 2 posts ] 
Author Message
 Post subject: A 301/ 302 URL redirection script in PHP
PostPosted: Fri Feb 10, 2006 3:13 pm 
Hi,

Following is a useful php code for 301 / 302 URL redirection.

For 301 redirects, use

<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.indiaforums.info");
exit();
?>

For 302 redirects, use

<?php
header("HTTP/1.1 302 temporarily Moved");
header("Location: http://www.indiaforums.info");
exit();
?>


Read more at
http://clsc.net/research/google-302-page-hijack.htm

Seolion


Top
  
 
 Post subject: Same using .htaccess in Linux servers
PostPosted: Fri Feb 10, 2006 10:12 pm 
Offline
Site Admin
User avatar

Joined: Fri Jan 06, 2006 11:21 am
Posts: 82
Hi,

updating headers depending upon conditions may not work out if you want a redirection from http://indiaforums.info/ to http://www.indiaforums.info/ for this, if you are using linux servers, you can edit the .htaccess file as

Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^indiaforums.info$
RewriteRule ^(.*)$ http://www.indiaforums.info/$1 [R=301,L]


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC + 5:30 hours


Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group

phpBB SEO