AddDefaultCharset utf-8
<IfModule mod_rewrite.c>
RewriteEngine on

# ---> The two lines belowe redirects mastarkii.561258.xyz to <---
# ---> mastarkii.561258.xyz/admin <---


RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^$ /admin/authentication [L,R=301]


RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L,QSA]
</IfModule>
