szurubooru/public_html/.htaccess

20 lines
538 B
ApacheConf
Raw Normal View History

DirectoryIndex app.min.html
2014-09-02 19:46:53 +02:00
DirectoryIndex index.html
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/?data/posts/([^/]+)/? /api/posts/$1/content [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/?data/thumbnails/(\d+)x(\d+)/posts/([^/]+)/? /api/posts/$3/thumbnail/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/?data/thumbnails/(\d+)x(\d+)/avatars/([^/]+)/? /api/users/$3/avatar/$1 [L]
RewriteRule ^/?api/(.*) api-dispatch.php?q=$0 [QSA,L]
2014-09-02 09:36:42 +02:00
<IfModule mod_mime.c>
AddType text/plain .tpl
2014-09-02 09:36:42 +02:00
</IfModule>