web2print-service/public/.htaccess
isUnknown b130f5c9d8
Some checks are pending
Deploy / deploy (push) Waiting to run
Reorganize project structure and migrate CI to Forgejo
Move all files from deploy/ to project root, replace .gitlab-ci.yml
with .forgejo/workflows/deploy.yml using Gitea Actions format.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 06:54:52 +01:00

12 lines
272 B
ApacheConf

# Activer le moteur de réécriture
RewriteEngine On
# Rediriger toutes les requêtes vers index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
# Sécurité
<Files ".env">
Require all denied
</Files>