summaryrefslogtreecommitdiff
path: root/.htaccess
diff options
context:
space:
mode:
authornatrak <>2003-02-12 21:37:55 +0000
committernatrak <>2003-02-12 21:37:55 +0000
commitebd95351401cfc23633671210bf89a6b4b3a7c0b (patch)
tree4641c82653e5b6b2a211f395b892d9bf7783e552 /.htaccess
parent074b9bf421fbff16061cc54f412367ed833239a5 (diff)
downloadbrdo-ebd95351401cfc23633671210bf89a6b4b3a7c0b.tar.gz
brdo-ebd95351401cfc23633671210bf89a6b4b3a7c0b.tar.bz2
- Fixed blog.module to accept blog/name URLs as well as blog/id
- Changed the RewriteRule in .htaccess. - Fixed form_select() matching incorrectly. - Added missing $Id$ to menu.inc
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess4
1 files changed, 2 insertions, 2 deletions
diff --git a/.htaccess b/.htaccess
index ef63b4446..f1f02e451 100644
--- a/.htaccess
+++ b/.htaccess
@@ -26,7 +26,7 @@ ErrorDocument 500 /error.php
php_value magic_quotes_gpc 0
php_value magic_quotes_runtime 0
php_value magic_quotes_sybase 0
- php_value arg_separator.output "&amp;"
+ php_value arg_separator.output "&amp;"
php_value session.cache_expire 200000
php_value session.cookie_lifetime 2000000
php_value session.auto_start 0
@@ -38,7 +38,7 @@ ErrorDocument 500 /error.php
# Various rewrite rules
<IfModule mod_rewrite.c>
RewriteEngine on
- RewriteRule ^blog/(.*) /module.php?mod=blog\&name=$1 [R]
+ RewriteRule ^blog/(.*) /index.php?q=blog/name=$1 [R]
</IfModule>
# $Id$