I've set the htaccess like this 😀
If I try it on Cpanel, I can use this htaccess..!
SetEnvIf Authorization "(.)" HTTP_AUTHORIZATION=$1
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteCond %{HTTPS} off
#RewriteRule .*$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
#RewriteRule . - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization},last]
#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn't true it sends the
#request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#This last condition enables access to the images and css folders, and the robots.txt file
RewriteCond $1 !index.php|assets|cdn|sess_|robots.txt|css
RewriteRule .*$ index.php/$1 [L]
</IfModule>