Ever wondered of managing redirect without Google getting to know about it?
We can actually play around with CSS in order to redirect pages and traffic. Since this trick will involve only CSS, we can be pretty sure of going unnoticed by search engines still achieving what we want.
This trick still uses Javascript in some sort of way. But the good thing about it is that CSS code does not get analyzed by Google.
Now, just think about all the possible SEO exploits this trick can have…!
We just need these three files:
redirect.htc
<attach event="ondocumentready" handler="redirect" />
<script language="JScript">
function redirect() {
window.document.location.href = 'http://www.xxxxxxxxx.com';
}
</script>
Then redirect.xml
<?xml version = "1.0"?>
<bindings xmlns = "http://www.mozilla.org/xbl" xmlns:html = "http://www.w3.org/1999/xhtml">
<binding id = "redirect" applyauthorstyles = "false">
<implementation>
<constructor>
//
var elem = this; // maintain a reference to the bound element
window.addEventListener('load',
function()
{
location.href='http://www.xxxxxxxxxx.com';
},false);
//
</constructor>
</implementation>
</binding>
</bindings>
index.html code
<style> body { behavior:url("./redirect.htc"); -moz-binding: url('./redirect.xml#redirect'); } </style>


very cool trick!