prolab-api/api/web/.htaccess

14 lines
240 B
ApacheConf
Raw Normal View History

2025-10-03 11:00:05 +00:00
# /api/web/.htaccess
2025-09-24 06:24:52 +00:00
2025-10-03 11:00:05 +00:00
Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /api/web/
2025-09-24 06:24:52 +00:00
2025-10-03 11:00:05 +00:00
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
2025-09-24 06:24:52 +00:00
2025-10-03 11:00:05 +00:00
RewriteRule . index.php [L]
</IfModule>