robots.txt

Do you want to share WYSIWYG Web Builder tips, tricks, tutorials or useful HTML code? You can post it here...
(no questions or problems please, this section is not monitored by support).
Forum rules
This section is to share tips, tricks and tutorials related to WYSIWYG Web Builder.
Please do not post questions or problems here. They will not be answered.

PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
Post Reply
WenWys

robots.txt

Post by WenWys »

can anyone explain how to generate a robots.txt file ?
genieuk
 
 
Posts: 129
Joined: Fri Mar 06, 2009 2:10 am

Post by genieuk »

Hi,

This is the wrong section.

Anyway to anwer your question

In Google type: robots.txt file generator

The first several results are links to robots.txt generators. All online and free of course.

If you feel you want to learn more about robots.txt file etc go here: http://www.robotstxt.org/

Hope this helps you.

Mathew
User avatar
star57
 
 
Posts: 129
Joined: Fri Mar 02, 2007 10:45 am

Re: robots.txt

Post by star57 »

WenWys wrote:can anyone explain how to generate a robots.txt file ?
try this
http://googlewebmastercentral.blogspot. ... obots.html
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

I think you search for something so that spiders do not index your pages or images.

tutorial from wb how to ad html and javascript.
http://www.wysiwygwebbuilder.com/add_html.html

metatag are for your page text(script) and urls if you use a noindex,nofollow than google wil not index your site for the search engines!
Metatags always between <head> and </head>

Code: Select all

<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW"> 
http://www.robotstxt.org/meta.html
==============================================

for only protect your images for searchbots you use a robots.text

http://www.gnc-web-creations.com/creati ... t_file.htm

you can read how to make a robots text,you upload it with ftp.
This example allows all robots to crawl all files except the images file.

Code: Select all

User-agent: * 
Disallow: /images/ 
But not all spiders read the robots.text file or metatag ,the best is if you also watermark your images.
=============================================


You can also make a htaccess file if you site is on a apache server to prevent hot linking.
Read the tutorial about Preventing hot linking of your images and other file types

http://www.javascriptkit.com/howto/htaccess.shtml
http://www.clockwatchers.com/htaccess_images.html


Prevent viewing of .htaccess fileIf you use htaccess for password protection

Code: Select all

<Files .htaccess>
order allow,deny
deny from all
</Files>
Post Reply