Wednesday, March 28, 2012

List of do-follow Web 2.0 sites with pagerank

wordpress.com - pr9
tumblr.com - pr8
typepad.com - pr8
weebly.com - pr8
blogger.com - pr8
tripod.com - pr8
posterous.com - pr7
jimdo.com - pr7
yola.com - pr7
squidoo.com - pr7
multiply.com - pr7
angelfire.com - pr7
officelive.com - pr7
rediff.com - pr7
wikidot.com - pr7
webs.com - pr7
webnode.com - pr7
salon.com - pr7
edublogs.org - pr6
webspawner.com - pr6
soup.io - pr6
ucoz.com - pr6
travelblog.org - pr6
gather.com - pr6
springnote.com - pr6
webstarts.com - pr6
moonfruit.com - pr6
journalspace.com - pr6
blog.de - pr6
onsugar.com - pr6
quizilla.teennick.com - pr6
areavoices.com - pr6
freeblog.hu - pr6
blog.com - pr6
blogdrive.com - pr5
blogtext.org - pr5
freeflux.net - pr5
freehostia.com - pr5
zoomshare.com - pr5
flixya.com - pr5
webgarden.com - pr5
ohlog.com - pr5
livelogcity.com - pr5
snappages.com - pr5
sosblogs.com - pr5
visualsociety.com - pr5
insanejournal.com - pr5
alivenotdead.com - pr5
hazblog.com - pr5
hpage.com - pr5
blog.com.es - pr5
350.com - pr5
beep.com - pr5
devhub.com - pr5
blog.hr - pr5
blinkweb.com - pr5
ewebsite.com - pr5
flukiest.com - pr4
bloggum.com - pr4
inube.com - pr4
iseekblog.com - pr4
hipero.com - pr4
blurty.com - pr4
bloghi.com - pr4
wallinside.com - pr4
getjealous.com - pr4
fotopages.com - pr4
wikipages.com - pr4
freeblogspot.org - pr4
myblogsite.com - pr4
spi-blog.com - pr4
2itb.com - pr4
mytripjournal.com - pr4
blogreaction.com - pr4
doomby.com - pr4
blogge.rs - pr4
mywapblog.com - pr4
yousaytoo.com - pr4
publr.com - pr3
blogster.com - pr3
weblogplaza.com - pr3
spyuser.com - pr3
bcz.com - pr3
iblog.at - pr3
honmag.com - pr3
blogpico.com - pr2
evood.com - pr2
uwcblog.com - pr2

Sunday, January 22, 2012

All about 301 Redirect


301 Redirect
301 redirect is the most efficient and Search Engine Friendly method for webpage redirection. It's not that hard to implement and it should preserve your search engine rankings for that particular page. If you have to change file names or move pages around, it's the safest option. The code "301" is interpreted as "moved permanently".
You can Test your redirection with Search Engine Friendly Redirect Checker
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">
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.new-url.com" );
?>
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.new-url.com/"
%>
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.
Source: http://www.webconfs.com/how-to-redirect-a-webpage.php