I hosted the site in IIS, but whenever I browse the site, I get 404.4. How can i solve this? I mentioned several posts, and they all say that the problem is related to staticfile, but it is already mapped. What else can I do? Here is the attached picture of handler mappings in my iis 7.0

Any ideas?
EDIT:
I have this url set:
<rules> <rule name="Imported Rule 1-1" enabled="true" stopProcessing="true"> <match url="^(.*)$" ignoreCase="false" /> <conditions logicalGrouping="MatchAll"> <add input="{SERVER_PORT}" pattern="80" /> </conditions> <action type="Rewrite" url="https://abc.com/{R:1}" /> </rule>
When I disable this rule, the http: // request will be processed correctly. But when I turn it on, I get this error.
Another update:
If I replaced this:
<action type="Rewrite" url="https://abc.com/{R:1}" />
with
<action type="Redirect" url="https://abc.com/{R:1}" />
Everything works well.
source share