我有以下规则显示未找到jpg的 avatar.jpg (/images/avatar.jpg
)。我已使用 IIS管理器将.htaccess
转换为web.config
。
这是.htaccess规则,它是常规apache服务器中的工作文件,
RewriteEngine On
RewriteCond %{REQUEST_URI} \.(jpg)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .*$ /images/user-default.png [L]
这是转换后的web.config文件(/uploads/web.config
),
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 3" stopProcessing="true">
<match url=".*$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{URL}" pattern="\.(jpg)$" ignoreCase="false" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="/images/avatar.png" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
仍然为非现有图像提供404未找到错误。