Forum Moderators: mack
If I do not have a "robot.txt" file will this adversly affect my search engine rankings?
No. The oprional file "robots.txt" is used to PREVENT some or all (well behaved) robots from spidering all or part of a web site.
If you want the whole site picked up by search engines, you have no need of a robots.txt file.
Matt
To make a robots.txt file use a text editor like notepad, you can have a blank file or add any of the following as required
(This will allow access to all of your site)
User-agent: *
Disallow:
(This will disallow access to your cgi-bin directory)
User-agent: *
Disallow: /cgi-bin/
(This will disallow access to your images directory)
User-agent: *
Disallow: /images/
Save the file as robots.txt and upload to your root directory via FTP in ASCII mode
For more details see the link below
[searchengineworld.com...]
Hope this helps