I want normal URL like www.sample.com/controller not www.sample.com/public/index.php/controller.
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCo
have you tried this:
RewriteEngine On RewriteBase /yoursite.com/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ public/index.php/$1 [L]