Make sure that you rewrite rule does not rewrite requests to image files. The rule should have two conditions that check if the requested url is not a file or a directory:
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
As was pointed out earlier in the thread you have relative paths to the images, which is what most probably causes them not to load. You have two options:
-
Change all the image links to absolute paths, e.g.: "/images/abcde.jpg", or
-