Laravel不在IIS 8共享主机上加载资产

时间:2017-11-20 11:34:09

标签: php laravel iis laravel-5

我的服务器在IIS 8上运行php 7.0。一切都很好。问题在于他们没有加载资产。我在Laravel非常初学 我的刀片文件 我的刀片文件,我试图在控制器中加载并获得如下所示的错误。 Stackoverflow不允许我在这里粘贴更多代码。所以这里是链接 https://pastebin.com/u6Kysf2x

我的web.config文件

   <?xml version="1.0" encoding="UTF-8"?>
<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" />
        <add input="{URL}" pattern="(.+)/$" ignoreCase="false" />
      </conditions>
      <action type="Redirect" redirectType="Permanent" url="{C: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>
 <handlers accessPolicy="Read, Execute, Script">
            <clear />
            <add name="PHP_via_FastCGI1" path="*.php" verb="GET,HEAD,POST" modules="FastCgiModule" scriptProcessor="C:\Program Files (x86)\PHP\v7.0\php-cgi.exe" resourceType="Either" />
             </handlers>
    </system.webServer>
</configuration>

我也是iis的初学者我刚刚在这里使用了wordpress和许多其他cms,并且在这里也使用了代码iginitor。

我的网站丢错了什么 enter image description here

1 个答案:

答案 0 :(得分:1)

我正在做的所有错误都没有运行

npm install

我并没有使用laravel mix来编译资产。您可以参考此文档在laravel中编译您的js和css资产

https://laravel.com/docs/5.5/mix