for people who only have php as cgi
git-svn-id: file:///home/shish/svn/shimmie2/trunk@315 7f39781d-f577-437e-ae19-be835c7a54ca
This commit is contained in:
parent
6a86f5f0e8
commit
0e20a2554f
1 changed files with 12 additions and 4 deletions
16
.htaccess
16
.htaccess
|
@ -16,8 +16,16 @@ RewriteCond %{REQUEST_FILENAME} !-f
|
|||
RewriteRule ^(.*)$ index.php?q=$1&%{QUERY_STRING} [L]
|
||||
</IfModule>
|
||||
|
||||
DefaultType image/jpeg
|
||||
<IfModule mod_php4.c>
|
||||
php_flag register_globals 0
|
||||
php_flag magic_quotes_gpc 0
|
||||
php_flag magic_quotes_runtime 0
|
||||
</IfModule>
|
||||
|
||||
php_flag register_globals 0
|
||||
php_flag magic_quotes_gpc 0
|
||||
php_flag magic_quotes_runtime 0
|
||||
<IfModule mod_php5.c>
|
||||
php_flag register_globals 0
|
||||
php_flag magic_quotes_gpc 0
|
||||
php_flag magic_quotes_runtime 0
|
||||
</IfModule>
|
||||
|
||||
DefaultType image/jpeg
|
||||
|
|
Reference in a new issue