I can't seem to get MVC to ignore this route (throws an Controller not found if file doesn't exist - which happens occasionally and is expected if the generation isn't complete)
/WebDirectory/signalFiles/52f23308-6d2d-40e6-9048-319e0539c83d.txt
I'm trying this right now in the Global.ASAX to eliminate the error
routes.IgnoreRoute("{*signalstxt}", new { signalstxt = @".*/signalFiles/.*.txt" });
this matches perfectly in the RegEx tester but does nothing in the actual app
Any thoughts?