From 0cc399504b5fece562c9a54615c055953fa65bcc Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 29 Jan 2007 12:36:51 +0000 Subject: [PATCH] - Patch #113377 by Gerhard: clean up .htaccess. --- .htaccess | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.htaccess b/.htaccess index 37170fb2f53..9caf2514d6c 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]