diff --git a/.htaccess b/.htaccess
index 37170fb2f53cfd5fed5636e4112885cb83dc318a..9caf2514d6c6e7f0fd510b15d0a55041684f8820 100644
--- a/.htaccess
+++ b/.htaccess
@@ -74,19 +74,7 @@ DirectoryIndex index.php
   # the rewrite rules are not working properly.
   #RewriteBase /drupal
 
-  # Rewrite old-style URLs of the form 'node.php?id=x'.
-  #RewriteCond %{REQUEST_FILENAME} !-f
-  #RewriteCond %{REQUEST_FILENAME} !-d
-  #RewriteCond %{QUERY_STRING} ^id=([^&]+)$
-  #RewriteRule node.php index.php?q=node/view/%1 [L]
-
-  # Rewrite old-style URLs of the form 'module.php?mod=x'.
-  #RewriteCond %{REQUEST_FILENAME} !-f
-  #RewriteCond %{REQUEST_FILENAME} !-d
-  #RewriteCond %{QUERY_STRING} ^mod=([^&]+)$
-  #RewriteRule module.php index.php?q=%1 [L]
-
-  # Rewrite current-style URLs of the form 'index.php?q=x'.
+  # Rewrite URLs of the form 'index.php?q=x'.
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]