Forum Moderators: open
The site's page are all indexed in all the search engines I've ever checked.
Points to note:
And, how do I keep my cgi-bin from being indexed?
By using the Robots Exclusion Protocol [searchengineworld.com].
Upload a plain .txt file to the root of your web. Within that plain .txt file you'll have this...
User-agent: *
Disallow: /cgi-bin/
Name the plain .txt file this...
robots.txt
Make sure that you validate your robots.txt file by utilizing the resources available at the link posted above.
So, the spider will not be banned from indexing that file, as it's not indexing it from the /cgi-bin/ location, rather it is indexed from the domain.com/ location.
It's just like a copy of the file at another location, only there is no copy, the original file will just get shown at another location than where it really is.
/claus
RewriteRule keyword.htm /cgi-bin/ib3/ikonboard.cgi [R=301,L]
So I could use [mysite.com...] to promote the board with SE's.
Are you saying I should do this, along with the disallow statement to keep search engines out of my cgi-bin? Thanks all.
No, don't do that. The
R=301 part is not what you want. This makes it an external rewrite, and that one is visible to the spider, so it will not index it. Make it an internal rewrite in stead: RewriteRule keyword\.htm /cgi-bin/ib3/ikonboard.cgi [L] You might even want to speed it up by doing like this:
RewriteRule ^keyword\.htm$ /cgi-bin/ib3/ikonboard.cgi [L] Above ^ and $ defines the start and end of the filename so the match and redirect gets faster.
All you'll ever want to know (and then some) is here: [engelschall.com...]
/claus