mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
11 lines
295 B
ApacheConf
Executable File
11 lines
295 B
ApacheConf
Executable File
<IfModule mod_rewrite.c>
|
|
Options -MultiViews
|
|
RewriteEngine On
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^ index.php [L]
|
|
|
|
RewriteCond %{HTTP:Authorization} .
|
|
RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization}]
|
|
</IfModule> |