Redirect a page for google page rank?
#6
OK this is it:

Its called a 301 Redirect. It conserves your PR and tells search engines you have moved.


Quote:IIS Redirect

  • In internet services manager, right click on the file or folder you wish to redirect
  • Select the radio titled "a redirection to a URL".
  • Enter the redirection page
  • Check "The exact url entered above" and the "A permanent redirection for this resource"
  • Click on 'Apply'
Redirect in ColdFusion

<.cfheader statuscode="301" statustext="Moved permanently">
<.cfheader name="Location" value="http://www.new-url.com">

Redirect in PHP

<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.new-url.com" );
?>

Redirect in ASP

<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently" Response.AddHeader "Location", " http://www.new-url.com"
>

Redirect in ASP .NET

<script runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location","http://www.new-url.com");
}
</script>

Redirect Old domain to New domain (htaccess redirect)

Create a .htaccess file with the below code, it will ensure that all your directories and pages of your old domain will get correctly redirected to your new domain.
The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
Please REPLACE http://www.newdomain.com in the above code with your actual domain name.
In addition to the redirect I would suggest that you contact every backlinking site to modify their backlink to point to your new website.
Note* This .htaccess method of redirection works ONLY on Linux servers having the Apache Mod-Rewrite moduled enabled.

Redirect to www (htaccess redirect)

Create a .htaccess file with the below code, it will ensure that all requests coming in to domain.com will get redirected to http://www.domain.com
The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]
Please REPLACE domain.com and http://www.newdomain.com with your actual domain name.
Note* This .htaccess method of redirection works ONLY on Linux servers having the Apache Mod-Rewrite moduled enabled.
Reply


Messages In This Thread
Redirect a page for google page rank? - by zach - 11-23-2006, 02:59 AM
Redirect a page for google page rank? - by zach - 11-24-2006, 01:20 PM
Redirect a page for google page rank? - by zach - 12-08-2006, 01:14 AM
Redirect a page for google page rank? - by zach - 12-13-2006, 10:58 AM
Redirect a page for google page rank? - by kisna - 12-26-2006, 08:24 AM
Redirect a page for google page rank? - by zach - 12-26-2006, 03:10 PM

Possibly Related Threads...
Thread Author Replies Views Last Post
  Google Domains pricing and supported TLDs Williamhawk 0 1,801 12-15-2017, 05:14 AM
Last Post: Williamhawk
  Need help with SMTP for Contact Us page Williamhawk 0 1,644 12-12-2017, 05:13 AM
Last Post: Williamhawk
  Any good service for Google Apps deployment and support? MatterEnergy 3 2,501 10-26-2017, 01:04 PM
Last Post: Glaceptra
  PR ~ Page Ranking Ceruleah 13 10,175 02-26-2007, 06:46 PM
Last Post: -thoma-

Forum Jump:


Users browsing this thread: 2 Guest(s)