summaryrefslogtreecommitdiff
path: root/.htaccess
diff options
context:
space:
mode:
authorJams H Thompson <jht001@users.sourceforge.net>2008-06-15 22:18:44 +0000
committerJams H Thompson <jht001@users.sourceforge.net>2008-06-15 22:18:44 +0000
commit6dc0fdb717c6e59521f99ca9165b58c3bcdbb45e (patch)
tree3177c9cefbd88c34dfd8b50ef9317f6072db1c4f /.htaccess
parente57770ed1b46513d619aa01cfa0b3c946c05ee43 (diff)
downloadboards-6dc0fdb717c6e59521f99ca9165b58c3bcdbb45e.tar.gz
boards-6dc0fdb717c6e59521f99ca9165b58c3bcdbb45e.tar.bz2
boards-6dc0fdb717c6e59521f99ca9165b58c3bcdbb45e.zip
Make boards 'Warned Posts' feature work
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess9
1 files changed, 5 insertions, 4 deletions
diff --git a/.htaccess b/.htaccess
index b188d69..d50b72a 100644
--- a/.htaccess
+++ b/.htaccess
@@ -6,10 +6,11 @@
RewriteCond %{SCRIPT_FILENAME}/index.php -f
RewriteRule ^(.*)$ - [L]
- RewriteRule ^board/(\d+).*$ index.php?b=$1 [L,QSA]
- RewriteRule ^topic/(\d+).*$ index.php?t=$1 [L,QSA]
- RewriteRule ^view/board/(\d+).*$ index.php?b=$1 [L,QSA]
- RewriteRule ^view/topic/(\d+).*$ index.php?t=$1 [L,QSA]
+ # Make sure URLs like this work: ...topic/123&warning[1345]=show
+ RewriteRule ^board/(\d+.*)$ index.php?b=$1 [L,QSA]
+ RewriteRule ^topic/(\d+.*)$ index.php?t=$1 [L,QSA]
+ RewriteRule ^view/board/(\d+.*)$ index.php?b=$1 [L,QSA]
+ RewriteRule ^view/topic/(\d+.*)$ index.php?t=$1 [L,QSA]