2021-10-15 08:34:45 +00:00
|
|
|
<FilesMatch ".(ttf|otf|eot|woff|woff2)$">
|
|
|
|
<IfModule mod_headers.c>
|
|
|
|
Allow from all
|
|
|
|
Header set Access-Control-Allow-Origin "*"
|
|
|
|
</IfModule>
|
|
|
|
</FilesMatch>
|
2021-06-25 08:46:48 +00:00
|
|
|
<IfModule mod_rewrite.c>
|
|
|
|
RewriteEngine On
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
RewriteCond $1 !^(index\.php|assets/|robots\.txt)
|
|
|
|
RewriteRule ^(.*)$ index.php/$1 [L]
|
|
|
|
</IfModule>
|