Hi,
I have a personal domain which points to my blogger.com site.
When Google spiders it, the search results in:
Redirection to here. (....instead of the web address)
Redirection to here (.....instead of my own title)
www.domain-name.com (my correct purchased domain url)
I noticed Google uses frames and am presuming this is why, but is there a way of displaying my blogs actual <title> as opposed to the above please?
The source of the Blogger.com page is as follows:
Code:
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="100%,*" cols="100%" border="0" framespacing="0">
<frame src="http://myblog.blogspot.com" frameborder="NO"
scrolling="AUTO">
</frameset>
<noframes>
<body bgcolor="#FFFFFF">
Redirection to <a href="http://myblog.blogspot.com">here</a>
</body>
</noframes>
</html>
The beginning of my own actual written page headers read:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<title>My Title</title>
<!-- no cache headers -->
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Cache-Control" content="no-cache" />
<!-- end no cache headers -->
<meta name="Description" content="description">
<meta name="Keywords" content="keywords">
<meta name="keyphrases" content="content">
<meta name="robots" content="index,follow">
<head>
Thank you in advance for any help.
Last edited by ftg : 08-26-2005 at 12:49 AM.
|