Я страдаю файлом веб-конфигурации, который не переписывает url для моего приложения codeigniter. здесь находится файл веб-конфигурации.
<?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>
вот мой сайт: http://gandhitomodi.com
Я не могу получить этот тип URL http://gandhitomodi.com/controller/method/
например
http://gandhitomodi.com/welcome/index/
Пожалуйста, помогите мне в этом.
**** Отредактированный *****
здесь находится route.php
$route['default_controller']="welcome/index";
$route['sendmail']="welcome/send";
Вот настройки config.php, которые я изменил.
$config['base_url']="http://gandhitomodi.com/";
$config['index_page']='';
$config['url_protocal']='PATH_INFO';`