codeigniter没有去文件夹

时间:2016-07-05 06:40:33

标签: php codeigniter plesk

我在本地主机上创建了一个带有codeigniter的新网站,它成功运行但是我将它上传到plesk主机并为它创建了一个web.config

<configuration>
<system.webServer>
    <httpErrors errorMode="Detailed" />
    <asp scriptErrorSentToBrowser="true"/>
    <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>
<system.web>
    <customErrors mode="Off"/>
    <compilation debug="true"/>
</system.web>

我的项目工作成功但当我去内部文件夹时出现此错误

404 Page Not Found

The page you requested was not found.

1 个答案:

答案 0 :(得分:1)

我对此并不十分确定。

  1. 在本地计算机上执行相同的Web配置并进行检查。
  2. 确保以递归方式为所有内部文件夹设置权限0755。对于测试,您可以将所有内部文件夹的完全权限作为0777并进行检查。确保您恢复到必要的权限。