Anyone can help me, please.. I was follow steps on https://openlitespeed.org/kb/migrate-apache-rewrite-rules-to-openlitespeed/ to make my codeigniter project work on cyberpanel, with it .htccess.. But it still didn't work.. This is my .htaccess
RewriteEngine On
RewriteBase /bia
RewriteCond $1 ^(application|system|private|logs)
RewriteRule ^(.*)$ index.php/access_denied/$1 [PT,L]
RewriteCond $1 ^(index\.php|robots\.txt|favicon\.ico|public|assets|css|js|images|img|images)
RewriteRule ^(.*)$ - [PT,L]
RewriteRule ^(.*)$ index.php/$1 [PT,L]