Some pages not showing in sitemap
« on: February 18, 2010, 06:47:51 PM »
Hi

My website has approx 20 html pages but only 7 show up when I use a sitemap generator

All the pages have been made in the same way so why have the majority been ignored?

The website is wavefx.co.uk and an example is awards.html does show –filming.html does not

I’m relatively new to the whole site map game so please don’t beat me with too much of a technical response

Thanks in advanced!!!
Re: Some pages not showing in sitemap
« Reply #1 on: February 18, 2010, 10:03:24 PM »
Hello,

that link is create with javascript: document.location.href='filming.htm'
You should change it to html link tag (<a href="">) to get it indexed.
Re: Some pages not showing in sitemap
« Reply #2 on: February 19, 2010, 05:10:11 PM »
Hi

Thanks for getting back to me so quick

I've changed all my links and pages to .html but still filming.html for example does not show up

Any ideas
Re: Some pages not showing in sitemap
« Reply #3 on: February 19, 2010, 11:33:15 PM »
You should change the way the links are included on your pages, i.e. instead of:
Code: [Select]
<tr onclick="document.location.href='filming.html'" style="" onmouseout="style.backgroundColor=''" onmouseover="style.backgroundColor='#E1EAFF'">
              <td width="28"><img width="28" height="22" src="img/arrow.gif"></td>
                <td class="menu">Filming and editing</td>
            </tr>
you need:
Code: [Select]
<tr onclick="document.location.href='filming.html'" style="" onmouseout="style.backgroundColor=''" onmouseover="style.backgroundColor='#E1EAFF'">
              <td width="28"><img width="28" height="22" src="img/arrow.gif"></td>
                <td class="menu"><a href="filming.html">Filming and editing</a></td>
            </tr>