--- .htaccess.1.91 Thu Jun 26 13:35:33 2008 +++ .htaccess Thu Jun 26 23:19:14 2008 @@ -13,9 +13,14 @@ Options -Indexes # Follow symbolic links in this directory. Options +FollowSymLinks -# Customized error messages. +# Make Drupal handle any 404 errors. ErrorDocument 404 /index.php +# Force simple error message for requests for non-existent favicon.ico. + + ErrorDocument 404 "The requested file favicon.ico was not found. + + # Set the default handler. DirectoryIndex index.php @@ -74,9 +79,10 @@ DirectoryIndex index.php # uncomment the following line: # RewriteBase / - # Rewrite URLs of the form 'index.php?q=x'. + # Rewrite URLs of the form 'x' to the form 'index.php?q=x'. RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_URI} !=/favicon.ico RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]