Fixed get_post() support for numeric fields.
[fa-stable.git] / .htaccess
1 # Protect sensitive files.
2 <FilesMatch "\.(inc|po|sh|.*sql|log)$">
3         Order allow,deny
4         Deny from All
5         Satisfy All
6 </FilesMatch>
7
8 # Disable directory listings.
9 Options -Indexes
10
11 # Set the default index.
12 DirectoryIndex index.php
13
14 # These settings are recommended
15 # Maybe you might have problems
16 # with other scripts that needs
17 # register_globals ON
18 <IfModule mod_php4.c>
19         php_flag magic_quotes_gpc Off
20         php_flag register_globals Off
21         php_flag session.use_trans_sid Off
22 </IfModule>
23 <IfModule mod_php5.c>
24         php_flag magic_quotes_gpc Off
25         php_flag register_globals Off
26         php_flag session.use_trans_sid Off
27 </IfModule>
28 #Sometimes neccessary to add those
29 #
30 #AddType application/x-javascript .js
31 #AddType text/css .css