i have issue while uploading website , writen with codeigniter framework
as Documentation say that i have to change .htaccess
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
and change Config.php by delete index.php from 'index_page'
$config['index_page'] = '';
it working fine on local host @ localhost/myapp
when upload rewrite_mode not working , and i have to return index.php in all code
example.com/myapp/index.php/controller/action
i have tried different .htaccess ways but no one fix it
Update :
server i upload on it is windows server !! , is there away to convert .htaccess to web.config on IIS