404-找不到文件或目录。 Windows Server上的Codeigniter

时间:2019-02-02 09:32:23

标签: php windows codeigniter live

我将我的codignter网站上传到Windows服务器。首页工作正常,但所有其他链接和页面均显示

服务器错误 404-找不到文件或目录。 您正在寻找的资源可能已被删除,名称已更改或暂时不可用。 这是我的htaccess文件

$sql = $conn -> prepare("SELECT username, email FROM users WHERE username= :uname OR email = :email");
        $sql -> bindParam(':uname', $uname);
        $sql -> bindParam(':email', $email);
        $sql -> execute();

        $row=$sql -> fetchAll();
        print_r($row);

它可在Linux服务器上使用 请帮忙。

1 个答案:

答案 0 :(得分:0)

制作文件web.config

<?xml version="1.0" encoding="UTF-8"?>
<configuration>

<system.webServer>

    <httpErrors errorMode="Detailed" />
    <asp scriptErrorSentToBrowser="true"/>

    <rewrite>
    <rules>
        <rule name="RuleRemoveIndex" 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" />
            </conditions>
            <action type="Rewrite" url="index.php/{R:1}" appendQueryString="true"/>
        </rule>
    </rules>
    </rewrite>

</system.webServer>

<system.web>
    <customErrors mode="Off"/>
    <compilation debug="true"/>
</system.web>

</configuration>