split testing home page

P

Paul Lain

Hi I am currently split testing my home page but this presents a major
problem. Every page that links off the home page has a home page button upon
it. The problem is I have to create duplicate pages for every page that
contains a home page button otherwise the button might return the user to the
wrong home page. Is there a code or something that could solve this problem
for me? Thanks Paul
 
T

Thomas A. Rowe

Not if you are using the FP navigation components.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
N

news.microsoft.com

If you're inserting links manually (not using the nav components), make sure
they do point back to the correct home page.

eg index.html in the root folder (eg htdocs, public_html etc). If you use
several "index.html" (or similar) files i.e. for each sub-folder as the
"first" page within those folders, make sure you point back to your main
index.html page using relative links like <a
href="../../../index.html">Home</a> to return from 3 levels-deep in your
folder structure

Or, use absolute URL beginning <a
href="http://www.yoursite.com/index.html">Home</a>
 
Top