Helo all - thanks for stopping by.
Basically my question is as follows: I have a script that reloads a blog page if its not in an iframe on my site. Will this interfere with search engines crawling the blog?
My gut says that this script wont keep the blog from being crawled, but it will interfere with any resulting links generated by search engines as following them, as these links will dump the user with js, into the 'top level' of the blog, and not the page they were after. To solve this would require some fancy cookie work.
<script type="text/javascript">
if (self.location == top.location && location.search.substring(1) != 'nf')
top.location.href = 'http://www.parentSite.co.uk/cms/section/iframe/'
</script>
what say ye?