Forum Moderators: phranque
The actual index.html page is nothing more then a refresh page with a php script on it to monitor which pages convert.
I was wondering if this will harm us with the search engines as the actual index page has no content besides a reference to a script.
Thanks in advance for any input.
If you display to the search-engine bots the index.htm page, which (if I understand you correctly) is just a "doorway" redirect page, then yes, this could hurt you. But if you display one of the index_N.htm pages to the bots (perhaps using an .htassess redirect to send them to the right place...?), then this might not be so bad.
If I may ask, why do you not want to have a fixed and stable "front door" page on you site? Is it really necessary to "rotate" the pages, rather than just updating the content?
Thank you.
Eliz.
Are you using the header(location) type redirect? Are you using a readfile, file_get_contents, etc. type of syntax?
The location redirect can cause problems in-and-of iteself because it causes an actual redirect that the engine sees which can cause a lot of problems down the road. I wouldn't recommend it.
A readfile or other similar type of call would be better as there is no actual visible redirect.
In both cases, A/B testing can still cause problems because the engine will be getting different versions of the page with each visit. This means, at the very least, the engines will be scoring the page differently on each visit. In addition, it *could* cause some problems with Google (and possibly others) because the content of the page will be changing often and that alone can cause issues.
You should be using PHP to include the content directly within your index (root-level) page rather than redirecting - you can use cookies to manage which users get which page.