I have a site where I have 50 different pages go to an iframe. I have the following script in the page so that when a search engine finds the page that it will go to the original page and not just the page that is suppose to show up in the iframe.
<!--
if (top == self) {
top.location = "churches.htm"
}
//-->
The problem is (finally) that if someone finds the page on a search engine, they cannot use the browser back button to get to the search engine.
Does anyone have an idea on how to remedy this problem?
Thanks for your help
<!--
if (top == self) {
top.location = "churches.htm"
}
//-->
The problem is (finally) that if someone finds the page on a search engine, they cannot use the browser back button to get to the search engine.
Does anyone have an idea on how to remedy this problem?
Thanks for your help