Codeigniter 应用程序 Apache 到 IIS

Codeigniter Application Apache to IIS

我在 Linux 环境中有一个 codeigniter 应用程序 运行,我想将它迁移到 Windows 环境。

我通过 FTP 迁移了文件。主页可以正确处理图片和样式,但链接不能正常显示错误 404。

它与 htaccess 和 web.config 有关系吗?

通过为 web.config 重写 htaccess 并更改 base_url.

解决
<system.webServer>
    <rewrite>
        <rules>
            <rule name="Main Rule" stopProcessing="true">
                <match url=".*" />
                <conditions logicalGrouping="MatchAll">
                <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                </conditions>
                <action type="Rewrite" url="index.php/{R:0}" />
            </rule>
        </rules>
    </rewrite>
</system.webServer>