Posted by: bugambilia | October 8, 2007

Redirect googlepages “index” to your own index.html

Since googlepages is restrictive for their “home” pages you might want to redirect to your own home/index file. Here are two choices:

Redirect to a Different URL using the Meta Tag “Refresh”
http://webmaster.iu.edu/tool_guide_info/refresh_metatag.shtml

Javascript (use with the other method in case javascript is disabled)

<script>
window.location.replace(“http://www.yoursite.com“)
</script>


Categories