| View previous topic :: View next topic |
| Author |
Message |
romano75018
Joined: 11 Jul 2007 Posts: 16
|
Posted: Fri Aug 24, 2007 5:07 am Post subject: Meta Name |
|
|
How and where do you add your meta name on the website?
Romain H-S |
|
| Back to top |
|
 |
|
|
litebulb1
Joined: 28 Sep 2007 Posts: 21
|
Posted: Fri Sep 28, 2007 12:43 am Post subject: Re: Meta Name |
|
|
the meta tags go in your header.
More Info |
|
| Back to top |
|
 |
palme
Joined: 06 Aug 2008 Posts: 14
|
Posted: Tue Aug 19, 2008 3:22 am Post subject: Re: Meta Name |
|
|
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<META name="keywords" Content="your keyword list">
<META name="description" Content="your site description">
<META NAME="ROBOT" CONTENT="INDEX,FOLLOW">
<META name="revisit-after" content="1 Days">
</HEAD>
<BODY>
</BODY>
</HTML>
First meta is about language
the second is your keyword
the third is description of your site
the 4. is about robot , shall it come and visit your site or not
the 5. is about how quiekly search engine shall come back and visit your webpage |
|
| Back to top |
|
 |
webmaster Site Admin

Joined: 17 Aug 2004 Posts: 3614 Location: Sweden
|
Posted: Tue Aug 19, 2008 7:17 am Post subject: Re: Meta Name |
|
|
There's no need for:
| Code: |
<META NAME="ROBOT" CONTENT="INDEX,FOLLOW">
<META name="revisit-after" content="1 Days"> |
The revisit time was stopped being used a long time ago and the robot-tag should only be used if you don't want something to be indexed or followed. |
|
| Back to top |
|
 |
palme
Joined: 06 Aug 2008 Posts: 14
|
Posted: Tue Aug 19, 2008 5:44 pm Post subject: Re: Meta Name |
|
|
| Thanks a lot, i diden't know it. |
|
| Back to top |
|
 |
webmaster Site Admin

Joined: 17 Aug 2004 Posts: 3614 Location: Sweden
|
Posted: Tue Aug 19, 2008 6:57 pm Post subject: Re: Meta Name |
|
|
Maybe I should add, so it can't be misunderstood. When you want something to not be indexed, you shouldn't use FOLLOW, use NOFOLLOW then instead, like this:
| Code: |
| <meta name="robots" content="noindex, follow, noarchive" /> |
This meta tells the search engines to not index the content on that page, but still follow the links. Could be usefull on for example search results pages. |
|
| Back to top |
|
 |
|