summaryrefslogtreecommitdiff
path: root/.htaccess
diff options
context:
space:
mode:
authornatrak <>2001-07-14 14:28:32 +0000
committernatrak <>2001-07-14 14:28:32 +0000
commit01a8b5edad0260f9995cb85cf138d68071a83705 (patch)
treead8fe357ce107598f42f7d9eb619f951148e52ca /.htaccess
parent501353f297a7dd829ddbb6b9916dd92607653b63 (diff)
downloadbrdo-01a8b5edad0260f9995cb85cf138d68071a83705.tar.gz
brdo-01a8b5edad0260f9995cb85cf138d68071a83705.tar.bz2
- Adding the rewrite rule for blog until a better system can be implemented.
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess6
1 files changed, 6 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess
index 473a5ec3d..1f4347c36 100644
--- a/.htaccess
+++ b/.htaccess
@@ -27,3 +27,9 @@ ErrorDocument 500 /error.php
php_value session.gc_maxlifetime 2000000
php_value session.cache_expire 200000
</IfModule>
+
+# Various rewrite rules
+<IfModule mod_rewrite.c>
+ RewriteEngine on
+ RewriteRule ^blog/(.*) /module.php?mod=blog&op=view&name=$1 [R]
+</IfModule> \ No newline at end of file