Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This Error has been solved in many other questions, sometimes the solutions is not that obvious, so my problem is error 404 when enabling hashbang in angular-app and pressing F5 . I have setup rewrite for my site URL REWRITE 2.0 (IIS)

<rule name="Rule1">
<match url="(.*)" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="/" logRewrittenUrl="true" />
</rule>

But what happens i get stock Fiddler says "can't post pictures yet", /scripts/angular.js_?=1315734143533 and lot of other scripts in same format app hangs and continous looping these scripts that actually is bundled how do i stop these bundles I have tried adding this:

<add input="{URL}" pattern="/bundles/" negate="true" /> 

but with no luck.

share|improve this question

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.