I am trying to remove index.php in codeigniter.my codegiter project is inside public_html/programemis/lasoona/.I have my .htacess file with the following code.
RewriteEngine on
RewriteBase /lasoona/
RewriteCond $1 !^(index.php|resources|robots.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
but its not working .any one please help.

base_urldefined? What about$config['index_page'], is it empty?index.php/$1would produceindex.php/foo/bar, which isn't going to be a valid url, unless you have path_info enabled. perhaps you wantindex.php?$1?