2020-03-07 23:37:19 -04:00
|
|
|
<IfModule mod_rewrite.c>
|
|
|
|
|
RewriteEngine On
|
|
|
|
|
|
2025-10-11 12:15:15 -03:00
|
|
|
# Bloquear acceso a las carpetas vendor/ y src/
|
|
|
|
|
RewriteRule ^(vendor|src)/.*$ - [F,L]
|
|
|
|
|
|
2020-03-07 23:37:19 -04:00
|
|
|
# Handle Front Controller...
|
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
|
RewriteRule ^ index.php [L]
|
|
|
|
|
</IfModule>
|