MVC アクションでホストされていない html ファイルにリダイレクトしようとしています。ページが破損したコンテンツ エラーで返されます。私はこのようにリダイレクトしようとしています:
return Redirect("file:///C:/test/mytestfile.html");
もちろん、ファイルが Web サーバー上にある場合、これは正常に機能します。
return Redirect("http://myserver/mytestfile.html");
Is it even possible to use the file protocol when redirecting in MVC? I've also tried:
return new RedirectResult("file:///C:/test/mytestfile.html");
and
Response.Redirect("file:///C:/test/mytestfile.html");
The project I'm doing this in is a bridge solution to overcome some shortcomings in a vendor solution, so unfortunately I can't just move the target files to web server. I really need to redirect to the file on the share where it lives.