codeigniter应用程序的Web Config文件

时间:2016-09-21 12:59:08

标签: php codeigniter iis web-config

我的网络配置文件没有重写我的codeigniter应用程序的网址。这是web配置文件。

<?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

我无法获得这种网址 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';`

5 个答案:

答案 0 :(得分:6)

您是否尝试过此处提及此方法

  

https://blogs.msdn.microsoft.com/azureossds/2015/04/23/converting-apache-htaccess-rules-to-iis-web-config-using-iis-manager-for-azure-websites/

这里也提到了

  

https://blogs.msdn.microsoft.com/azureossds/2015/09/28/convert-apache-htaccess-to-iis-web-config/

在“网址重写”部分下。它有相同的.htaccess,我正在使用也有很多在线转换器,你可以试试

答案 1 :(得分:2)

对于您的配置文件try this article。您的问题似乎就在您的操作线上。

<action type="Rewrite" url="index.php?{R:1}" appendQueryString="true" />

将其更改为:

<action type="Rewrite" url="index.php/{R:1}" appendQueryString="true" />

问号导致您的问题。此外,您的匹配行可能会更改为:

<match url="^(.*)$" ignoreCase="false" />

这有点具体,可能会在以后阻止一些令人头疼的问题。

答案 2 :(得分:2)

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <rewrite>
      <rules>
        <rule name="Imported Rule 1" stopProcessing="true">
          <match url="^(.*)$" ignoreCase="false" />
          <conditions logicalGrouping="MatchAll">
              <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
              <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
          </conditions>
          <action type="Rewrite" url="index.php?url={R:1}" appendQueryString="true" />
          </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>

你可以尝试这个代码它会工作正常我也只使用这个代码

谢谢

答案 3 :(得分:2)

当我使用mssql和Windows服务器以及codeigniter平台时,我也遇到了问题。我很难从url中删除index.php,或者你可以说漂亮的网址。经过大量的讨论和研发。我在服务器的根目录下对webcofig文件进行了一些更改。

重写web配置规则以删除index.php是 :

    <configuration>
    <appSettings>
         // default code..
    </appSettings>
    <system.webServer>
        <handlers>
            <clear />
// another default code

 </handlers>
        <rewrite>
              <rules>
                <rule name="Rule" stopProcessing="true">
                  <match url="^(.*)$" ignoreCase="false" />
                  <conditions>
                    <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
                    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
                    <add input="{URL}" pattern="^/favicon.ico$" ignoreCase="false" negate="true" />
                  </conditions>
                  <action type="Rewrite" url="index.php/{R:1}" appendQueryString="true" />
                </rule>
              </rules>
            </rewrite> 
    </system.webServer>
</configuration>

肯定它的工作以及codeigniter的其余部分工作正常。在routes.php和config.php中设置默认URL等设置也很重要。如果有其他帮助写下您的评论。

答案 4 :(得分:0)

首先,我们需要从url

中删除index.php

所以在 route.php 中你会改变行

$route['default_controller'] = "welcome";
$route['404_override'] = 'notfound';

并在 config.php 中更改行

$config['uri_protocol'] = 'AUTO';

之后,您需要在网站的根目录中添加 .htaccess 文件,如下所示:

/application
/system
/assets
/.htaccess

并将此代码添加到 .htaccess 文件

Header append X-FRAME-OPTIONS "SAMEORIGIN"
Header set Cache-Control "no-store"
Header set X-Content-Type-Options "nosniff"
Header set Strict-Transport-Security "max-age=31536000; includeSubDomains"
ErrorDocument 403 /notfound.php

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L] 


<IfModule !mod_rewrite.c>
        # If we don't have mod_rewrite installed, all 404's
        # can be sent to index.php, and everything works as normal.
        # Submitted by: ollakalla

    ErrorDocument 404 /index.php

</IfModule> 

然后您可以像控制器一样在控制器中访问您的方法

class Reviews extends CI_Controller 
{
    public function latest()
    {
         // Some code here
    } 
}

http://gandhitomodi.com/reviews/latest/