私には以下のルールがあります。avatar.jpg(/images/avatar.jpg
)が見つかりません。私はIISマネージャを使用して.htaccess
をweb.config
に変換しました。ここでAzure php web app web.configが動作しません。
はここ
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
)で、通常のApacheサーバにファイルを働いている.htaccessのルールで、
<?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>
存在しない画像にエラーが見つかりました。