i tried to remove index.php from my url in codeigniter project hosted on azure server.if i manually removed index.php from url its showing "The resource you are looking for has been removed, had its name changed, or is temporarily unavailable." following is my .htaccess file
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* /index.php/$0 [PT,L]
my config file
$config['base_url'] = 'http://myapp.azurewebsites.net/';
$config['index_page'] = '';
$config['uri_protocol'] = 'REQUEST_URI';
