Webmaster Malaysia Forum  


Go Back   Webmaster Malaysia Forum > Website Marketing and Promotion > Search Engine Marketing

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
How to Redirect a Web Page
Old
  (#1 (permalink))
New kid on the block
feelyou is on a distinguished road
 
feelyou's Avatar
 
Status: Offline
Posts: 6
Join Date: Oct 2007
Location: www.best-voip-service.info
Rep Power: 0
Thumbs up How to Redirect a Web Page - 01-01-2008, 08:50 PM

Below are a Couple of methods to implement URL Redirection

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'
ColdFusion Redirect
<.cfheader statuscode="301" statustext="Moved permanently">
<.cfheader name="Location" value="http://www.new-url.com">

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

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

ASP .NET Redirect
<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>

JSP (Java) Redirect
<%
response.setStatus(301);
response.setHeader( "Location", "http://www.new-url.com/" );
response.setHeader( "Connection", "close" );
%>

CGI PERL Redirect
$q = new CGI;
print $q->redirect("http://www.new-url.com/");
Ruby on Rails Redirect
def old_action
headers["Status"] = "301 Moved Permanently"
redirect_to "http://www.new-url.com/"
end
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 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 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 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.

How to Redirect HTML
Please refer to section titled 'How to Redirect with htaccess', if your site is hosted on a Linux Server and 'IIS Redirect', if your site is hosted on a Windows Server.

---------------------------------------------------------------------
voip service provider | envoi sms gratuit | conseil de beaute | free international calls
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#2 (permalink))
Blogging Moderator
calvynlee has a spectacular aura about calvynlee has a spectacular aura about
 
calvynlee's Avatar
 
Status: Offline
Posts: 1,524
Join Date: Jul 2006
Location: LittlePenang.com
Rep Power: 55
07-01-2008, 09:51 PM

i have using HTML redirect

but due to this is not permanent redirect, so my pagerank from iCalvyn.com are not equal to blog.icalvyn.com

any html permanent redirect suggest to me?


I Blog LIFE at iCalvyn.com
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#3 (permalink))
Vibrate your Brain Please
iamfreelancer will become famous soon enough iamfreelancer will become famous soon enough
 
iamfreelancer's Avatar
 
Status: Offline
Posts: 1,122
Join Date: Sep 2005
Location: in my body lar...
Rep Power: 58
08-01-2008, 09:39 AM

Quote:
Originally Posted by calvynlee View Post
i have using HTML redirect

but due to this is not permanent redirect, so my pagerank from iCalvyn.com are not equal to blog.icalvyn.com

any html permanent redirect suggest to me?
i don't think permanent redirect will help in your pagerank also ....
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
URL permanent redirect calvynlee Website Programming 5 28-11-2007 02:00 AM
DOmain Redirect calvynlee Domain Names 6 11-04-2007 06:32 PM
Domain Redirect Q&A calvynlee Domain Names 6 16-11-2006 11:39 AM
will a redirect page hurt SEO ranking? mrbadak Search Engine Marketing 3 17-09-2005 08:50 PM
.htaccess redirect www to non www alvinhan Other Internet Marketing Methods 2 02-06-2005 07:42 PM




Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0
vBulletin Skin developed by: vBStyles.com

WebmasterMalaysia.com is Proudly Hosted by Exabytes Semi Dedicated Server.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57