Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Web サービスを提供するサービス ファイル Service.svc があります。ヘルプ ページをメイン URL にしたいと考えています (例: /Service.svc/help ではなく /)。これは可能ですか、誰かがその方法を教えてもらえますか?
ヘルプページにリダイレクトするだけです。例えば:
[WebInvoke(UriTemplate = "", Method = "GET")] public void RedirectToHelp() { WebOperationContext.Current.OutgoingResponse.StatusCode = HttpStatusCode.Redirect; WebOperationContext.Current.OutgoingResponse.Location = "help"; }