我将我的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服务器上使用 请帮忙。
答案 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>