[thelist] search engine question (redirect page)

Jelle Desramaults jelle at vh-dr.com
Tue Aug 24 08:46:50 CDT 2004



Hi list,

I have a site that uses frames ( simple 4 frames site), the navigation in
the left frame is flash.

Normally when i have a frames page, i use the <noframes > tag to insert
links to my individual pages so
they will get indexed by the search engine spiders.

But here things got a little bit tricky

What i do is i send my visitors to a frames page that best suits their
screen resolution.
I use a javascript for this, the scipt is sitting in my index.html.

What it does is something like this :


if (screen.width >= 1024)
 {
 window.location = "index1024.html";
 }



My question is :

Should i insert my links on the redirect page ?
or should i insert them on the <noframes> tag in the frame pages ...

in other words, do search engine spiders follow the links generated in my
javascript ?


This is what my index.html looks like :


Javascript bit
----------------------------------------------------------------------------
----


<script language="JavaScript" type="text/javascript">
 <!--


if (screen.width >= 1024)
 {
 window.location = "index1024.html";
 }

 // end hiding -->
 </script>

----------------------------------------------------------------------------
----


HTML bit
----------------------------------------------------------------------------
----
<h1>Siësta schoenen</h1>

  <h2>Knappe schoenen brengen je naar unieke plaatsen</h2>

  <ul>

   <li><a href="homepagina.html">home</a></li>
   <li><a href="company/filialen.html">onze filialen</a></li>
   <li><a href="company/visie.html">company</a></li>
   <li><a href="streetstore/schoenen.html">schoenen</a></li>
   <li><a href="streetstore/sport.html">sport & casual wear</a></li>
   <li><a href="streetstore/accesoires.html">accesoires</a></li>
   <li><a href="streetstore/onderhoud.html">onderhoud</a></li>
   <li><a href="merken/index.php?m=adidas">merken</a></li>
   <li><a href="klanten/kaart.html">klantenkaart</a></li>
   <li><a href="klanten/registratie.html">registratie</a></li>
   <li><a href="shoemag/trends.html">trends</a></li>
   <li><a href="shoemag/weetjes.html">weetjes</a></li>
   <li><a href="games/index.html">games.html</a></li>
   <li><a href="acties/index.html">acties.html</a></li>

  </ul>

----------------------------------------------------------------------------
----


Tia !

, jelle


More information about the thelist mailing list