1
私のサーバーはPHP 7.0を実行しているIIS 8にあります。すべてがうまくいきます。ちょうど問題は彼らがロードされていない資産です。私はLaravelの初心者です 私のブレードファイル コントローラにロードしてエラーを取得しようとしているブレードファイル。 Stackoverflowでより多くのコードをここに貼り付けることができません。だからここにリンク https://pastebin.com/u6Kysf2xLaravelはIIS 8の共有資産をロードしていません。
私の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>
がある私はまた、私はちょうどここにワードプレスや他の多くのCMSを使用しても、ここでのコードのiginitorを使用し、IISで初心者です。
は ''
laravelであなたのJSとCSSの資産をコンパイルするために、このドキュメントを参照することができます代わりに ' C2486私のコードでは、 –