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.