2003-04-01 09:12:34 -05:00
|
|
|
# this will make register globals off in b2's directory
|
|
|
|
# just put a '#' sign before these three lines if you don't want that
|
|
|
|
|
|
|
|
<IfModule mod_php4.c>
|
|
|
|
php_flag register_globals off
|
|
|
|
</IfModule>
|
|
|
|
|
2003-05-25 19:39:25 -04:00
|
|
|
# this will set the error_reporting level to remove 'Notices'
|
|
|
|
<IfModule mod_php4.c>
|
|
|
|
php_value error_reporting 247
|
|
|
|
</IfModule>
|
2003-04-01 09:12:34 -05:00
|
|
|
|
|
|
|
|
2003-06-04 12:47:19 -04:00
|
|
|
# This activates content negotiation, so instead of /archives.php you could just call
|
|
|
|
# a file as /archives . Same for any other file on your site. Try it out!
|
2003-04-01 09:12:34 -05:00
|
|
|
|
2003-06-04 12:47:19 -04:00
|
|
|
Options +Multiviews
|