HTTP Error 404.4 - Not Found The resource you are looking for does not have an associated handler

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

enter image description here

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.

+4
source share
1 answer

I had the same problem. I installed the Application Request Routing component and then turned on the proxy server and selected Use URL Rewrite to check incoming requests entered by the alias of the redirect URL and my work.

+4
source

All Articles