Javascript redirect?

ScottHughes

Registered Member
Joined
Dec 22, 2006
Messages
89
Reaction score
77
Can you use javascript to redirect a doorway page to your actual site? Search engines can't read javascript, so they would never know.
 
I was wondering if people know the script for directing mail into the inbox? I was wondering if there was such a thing or program because I heard a lot of people talking about it saying there some sort of script or program that can make your mail go into the inbox
 
PHP works best but in some cases you cannot use php like when your on a free webhost or blog with no php support. Then the best way to redirect and not have google follow is to obfuscate or host a remote JS file hosting a remote JS works really well with blogger.
 
Can you use javascript to redirect a doorway page to your actual site? Search engines can't read javascript, so they would never know.

Google CAN read JS redirects... So make sure you always obfuscate your javascript redirect

You can use this snippet:

<script type="text/javascript">
<!--
window.location = "YOURSITE"
//-->
</script>


And obfuscate it with this tool:

busin3ss.n ame/tools/javascript-obfuscator/
 
Back
Top