lapavel on cpanel显示错误500

时间:2018-05-21 18:32:51

标签: php laravel cpanel server-error

我将我的项目上传到godaddy cpanel文件管理器。一切都运作良好,但后来,我想做和更新,我删除文件并上传新文件,但它开始放慢这页面不起作用 campustalkative.com目前无法处理此请求。 HTTP ERROR 500 我用一个hello world php脚本替换了我的laravel index.php文件内容,一切运行良好,但我的laravel文件给出了同样的错误,这让我怀疑我的laravel项目配置得好或者我可能已经删除了一些文件请帮助!.i仍然有我的.htaccess和web.config文件。

<configuration>   <system.webServer>
    <rewrite>
      <rules>
        <rule name="Imported Rule 1" stopProcessing="true">
          <match url="^(.*)/$" ignoreCase="false" />
          <conditions>
            <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
          </conditions>
          <action type="Redirect" redirectType="Permanent" url="/{R:1}" />
        </rule>
        <rule name="Imported Rule 2" stopProcessing="true">
          <match url="^" ignoreCase="false" />
          <conditions>
            <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
            <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
          </conditions>
          <action type="Rewrite" url="index.php" />
        </rule>
      </rules>
    </rewrite>   </system.webServer> </configuration>

web.config文件

0 个答案:

没有答案