# BEGIN FacturaScripts code
Options -Indexes

<IfModule mod_php.c>
   php_value max_input_vars 10000
   php_value post_max_size 99M
   php_value upload_max_filesize 99M
</IfModule>

<IfModule mod_php7.c>
   php_value max_input_vars 10000
   php_value post_max_size 99M
   php_value upload_max_filesize 99M
</IfModule>

<IfModule mod_rewrite.c>
   RewriteEngine On
   RewriteCond %{REQUEST_URI} !node_modules/ [NC]
   RewriteRule . index.php [L]
</IfModule>

<IfModule mod_expires.c>
   ExpiresActive On
   ExpiresDefault                           "access plus 1 week"
   ExpiresByType text/css                   "access plus 1 week"
   ExpiresByType application/javascript     "access plus 1 week"
   ExpiresByType text/javascript            "access plus 1 week"
   <FilesMatch "\.(php|cgi)$">
      ExpiresActive Off
   </FilesMatch>
</IfModule>
# END FacturaScripts code