I am suffering with a web config file that is not rewrite the url for my codeigniter application. here is the web config file.
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Clean URL" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php?{R:1}" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
here is my site : http://gandhitomodi.com
i am not able to get this kind of url http://gandhitomodi.com/controller/method/
for example
http://gandhitomodi.com/welcome/index/
Please Help me through this.
****Edited*****
here is the route.php
$route['default_controller']="welcome/index";
$route['sendmail']="welcome/send";
here is the config.php settings that i have changed.
$config['base_url']="http://gandhitomodi.com/";
$config['index_page']='';
$config['url_protocal']='PATH_INFO';`