summaryrefslogtreecommitdiff
path: root/.htaccess
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-02-20 08:02:57 +0000
committerDries Buytaert <dries@buytaert.net>2003-02-20 08:02:57 +0000
commita6a3215ee31f6b42d9f7440eb35f42848b4821d3 (patch)
tree21dbd4fdc2bf60848d0019ea59df336370445a1e /.htaccess
parent57ebd696c77dc49720fff98dd62403645f6d8c23 (diff)
downloadbrdo-a6a3215ee31f6b42d9f7440eb35f42848b4821d3.tar.gz
brdo-a6a3215ee31f6b42d9f7440eb35f42848b4821d3.tar.bz2
- Bugfix: made the pager work when clean URLs are enabled. Patch by Ax.
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess2
1 files changed, 1 insertions, 1 deletions
diff --git a/.htaccess b/.htaccess
index 12b0c33c7..3db273e18 100644
--- a/.htaccess
+++ b/.htaccess
@@ -40,7 +40,7 @@ ErrorDocument 500 /error.php
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
- RewriteRule ^(.*)$ index.php?q=$1 [L]
+ RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
RewriteRule ^blog/(.*) /index.php?q=blog/$1 [R]
</IfModule>