Make Traffic with Domain Typos
In case where you want to make traffic out of your typo domains just set a 301 Permanent URL redirect to the site where you want all traffic to be redirected.
This is good in the sense if you want to make traffic for your blog and in turn make money out of it. This is also good in terms where you want to make use a dormant domain.
Here are different methods to redirect your traffic:
1. PHP Redirect
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.new-url.com" );
?>
2. ColdFusion Redirect
<.cfheader statuscode="301" statustext="Moved permanently">
<.cfheader name="Location" value="http://www.new-url.com">
3. ASP .NET Redirect
4. ASP Redirect
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently";
Response.AddHeader("Location","http://www.new-url.com/");
%>
5. Javascript Redirect
<%
response.setStatus(301);
response.setHeader( "Location", "http://www.new-url.com/" );
response.setHeader( "Connection", "close" );
%>
6. htaccess Redirect
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
I hope the article was Interesting and beneficial for all those who want to make money online. Please Digg This if the article was informative for you.
Monday, November 5, 2007
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment