Topic: Preventing search bot indexing of certain pages
There are some pages in a bulletin board that you don't want search engines to index. Some examples are: post.php, login.php, search.php etc etc. You basically want search engines to only index the pages that have real content, e.g. index.php, viewforum.php, viewtopic.php and profile.php. A solution to the problem is to add a meta element to the pages that we don't want indexed? Something like this:
<meta name="ROBOTS" content="NOINDEX" />
How does that sound?