14 lines
342 B
ApacheConf
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> |