Primer commit del sistema avantika sin cambios

This commit is contained in:
2026-01-06 19:42:24 -06:00
commit 3ae4be5957
7127 changed files with 440072 additions and 0 deletions

21
.htaccess Executable file
View File

@@ -0,0 +1,21 @@
#suPHP_ConfigPath /home/facturas/public_html/
RewriteEngine on
RewriteRule ^index2/([^/\.]+)/?$ index2.php?page=$1 [L]
RewriteRule ^index2/([^/\.]+)/([^/\.]+)/([^/\.]+)?$ index2.php?page=$1&$2=$3 [L]
RewriteRule ^index2/([^/\.]+)/([^/\.]+)/?$ index2.php?page=$1&section=$2 [L]
RewriteRule ^index2/([^/\.]+)/([^/\.]+)/([^/\.]+)/([^/\.]+)?$ index2.php?page=$1&section=$2&$3=$4 [L]
RewriteRule ^([^/\.]+)/?$ index.php?page=$1 [L]
RewriteRule ^([^/\.]+)/([^/\.]+)/([^/\.]+)?$ index.php?page=$1&$2=$3 [L]
RewriteRule ^([^/\.]+)/([^/\.]+)/?$ index.php?page=$1&section=$2 [L]
RewriteRule ^([^/\.]+)/([^/\.]+)/([^/\.]+)/([^/\.]+)?$ index.php?page=$1&section=$2&$3=$4 [L]
<FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
Header set Cache-Control "max-age=290304000, public"
</FilesMatch>
php_value post_max_size 100M
php_value max_input_vars 3000