IIS URL重写CSS,JS NOT Loading

时间:2016-05-30 06:29:22

标签: javascript css .htaccess iis web-config

我的php web项目中有以下结构,我试图在IIS 10 express上托管。

  • 控制器
  • INC
  • SASS
    • CSS
    • JS​​
    • 的index.php
  • 的web.config

我的所有网址都应重写为url =" ./ web / index.php" 因此我写了以下web.config

<configuration>
<system.webServer>
    <rewrite>
        <rules>
            <clear />
            <rule name="rule 1" stopProcessing="true">
                <match url=".?" ignoreCase="true" />
                 <conditions>
                     <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                 </conditions>
                <action type="Rewrite" url="./web/index.php" />
            </rule>
        </rules>
    </rewrite>
</system.webServer>

现在我遇到的问题是css,js,...所有相关资源都不再有用了。知道我做错了吗?

KR Manuel

0 个答案:

没有答案