2 AddType application/x-java-archive .jar
5 <FilesMatch "\.(out|log)$">
9 <IfModule mod_rewrite.c>
11 # Protect repository directory from browsing
12 RewriteRule "(^|/)\.git" - [F]
14 # Rewrite current-style URLs of the form 'index.php?q=x'.
15 # Also place auth information into REMOTE_USER for sites running
18 # If you have troubles or use VirtualDocumentRoot
19 # uncomment this and set it to the path where your friendica installation is
21 # Friendica url: http://some.example.com
23 # Friendica url: http://some.example.com/friendica
24 # RewriteBase /firendica/
28 RewriteCond %{REQUEST_FILENAME} !-f
29 RewriteCond %{REQUEST_FILENAME} !-d
30 RewriteRule ^(.*)$ index.php?q=$1 [E=REMOTE_USER:%{HTTP:Authorization},L,QSA]