Page is a not externally linkable
vincevincevince - 5:39 pm on Nov 17, 2005 (gmt 0)
If you own or run any WIKI, any system which allows user uploadable files (with specified file name), or any system which allows users to create pages with names based upon the title ('seo friendly' pages) then I urge you to take steps to ensure that URLs of the form: GOOGLEb74h6s3m49v87f.html cannot be created. Regular expressions (for rapid implementation): PHP snippet, assuming $name is new file name:
Without giving specifics, there is a major problem with the site map system which allows anyone who can create a file to 'claim' ownership of a site, or a domain within a site.
/GOOGLE[a-z0-9]+\.html/
if (preg_match("/GOOGLE[a-z0-9]+\.html/",$title)) die("Sorry, name not allowed");