shimmie2/.htaccess

30 lines
846 B
ApacheConf
Raw Normal View History

<IfModule mod_dir.c>
DirectoryIndex index.php5 index.php
</IfModule>
2009-01-22 09:51:50 -06:00
<FilesMatch "\.(sqlite|sdb|s3db|db)$">
Deny from all
</FilesMatch>
<IfModule mod_rewrite.c>
RewriteEngine on
# rather than link to images/ha/hash and have an ugly filename,
# we link to images/hash/tags.ext; mod_rewrite splits things so
# that shimmie sees hash and the user sees tags.ext
RewriteRule ^_images/([0-9a-f]{2})([0-9a-f]{30}).*$ images/$1/$1$2 [L]
RewriteRule ^_thumbs/([0-9a-f]{2})([0-9a-f]{30}).*$ thumbs/$1/$1$2 [L]
# any requests for files which don't physically exist should be handled by index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?q=$1&%{QUERY_STRING} [L]
</IfModule>
<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