url - example.com/index.php
want to hide /index.php
htaccess
is enabled - some other rules work
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
doesn't work. index.php
is still there
maybe because my server is litespeed
and not apache
any help