I am using Codeigniter framework in PHP. My website is on apache server. Path: /var/www/example.com/public_html
.htaccess
RewriteEngine on
RewriteCond $1 !^(index\.php|public|\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?$1
But still I am getting this error on accessing this page: www.example.com/test/wallet:
The requested URL /test/wallet was not found on this server.
SCREEN SHOT

When I use www.example.com/index.php/test/wallet, then it's working...