Files
zampet-backend/public/.htaccess
Claudecio Martins c1184d2878 first commit
2025-11-04 18:22:02 +01:00

10 lines
251 B
ApacheConf
Executable File

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# Se não for arquivo nem pasta, manda tudo pro index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [L]
</IfModule>