Thread: MSN and frames
View Single Post
  #7 (permalink)  
Old 01-18-2005, 02:54 PM
jakejammin jakejammin is offline
WebProWorld New Member
 

Join Date: Jan 2005
Location: Dearborn
Posts: 1
jakejammin RepRank 0
Default

Quote:
Originally Posted by sfowler
I don't think so. We have a company site, www.madur.at which uses frames and is doing fine in German. Each frame is a separate page and indexed as such. The question is, whether the beasties can navigate their way to the individual frames, or if they get stuck beforehand.
No spider really likes frames.
Ever see "This page uses frames, but your browser doesn't support them." in a return from a search??

ALL the spiders can see is the index page.
I'm setting up a site that uses 3 frames.
So you have 4 pages top, side, main, and index.
Now the spiders only will see and spider INDEX, that HAS NOTHING ON IT but "This page uses frames, but your browser doesn't support them."

So I have done alot or research on spiders and frames, now what I understand is that you need to ADD content to the INDEX.

Here is what makes up a INDEX of a frames page.
Code:
<html>
<head>
<title>New Page 1</title>
</head>
<frameset rows="64,*">
	<frame name="banner" scrolling="no" noresize target="contents">
	<frameset cols="150,*">.
		<frame name="contents" target="main">
		<frame name="main">
	</frameset>
	<noframes>
	<body>
	

This page uses frames, but your browser doesn't support them.</p>
	</body>
	</noframes>
</frameset>
</html>
Now looking at that you will see no food for the spiders!! YOU HAVE TO FEED THE SPIDERS OR THEY WILL NOT LIKE YOU AND END UP BITING YA!!!

With the above INDEX frames page, whats gets spidered??? INDEX ONLY!!
What gets seen?? This page uses frames, but your browser doesn't support them!!!

Now here is how you feed the spiders and make them nice to you and your pages!!
1: REPLACE the "This page uses frames" bull, with keywords.
2: ADD all you links to different pages with
Code:

I woud not suggest adding the frames pages in that, because they will index the frame pages and allow people to open just that frame page and thats NO GOOD.

But in my case, I have products, so all my product pages are apart of that but not the top, side, and main.

Hope that helps
Reply With Quote