Files
ms1readerv4/ci4app/.htaccess
2026-07-17 11:48:07 -04:00

14 lines
342 B
ApacheConf

# Allow static files for Raven UI
<Directory "/home/ms1reader/public_html/assets">
AllowOverride All
Require all granted
</Directory>
<IfModule mod_rewrite.c>
Options -Indexes
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>