[eluser]InsiteFX[/eluser]
IIS is a Windows Server and was designed to run ASP.NET Applications along with MS SQL Server.
InsiteFX
[eluser]Reneesh T K[/eluser]
Try this one:
create a new htaccess in the root where 'application' folder resides and put this in it :
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [QSA,L]
Edit config.php page and change the following to this:
$config['index_page'] = '';
$config['uri_protocol'] = 'QUERY_STRING';
Hope this will clear your issue.