リダイレクト ヘッダー: >redirectHeaders<
概要
<redirectHeaders>
要素は、インターネット インフォメーション サービス (IIS) 7 が HTTP リダイレクトに追加するカスタム HTTP ヘッダーのコレクションを指定します。
Note
HTTP ヘッダーは、Web サーバーからの応答で返される名前と値のペアです。 Web サーバーからのすべての応答で返されるカスタム ヘッダーとは異なり、リダイレクト ヘッダーはリダイレクトが発生した場合にのみ返されます。
互換性
バージョン | メモ |
---|---|
IIS 10.0 | <redirectHeaders> 要素は、IIS 10.0 では変更されませんでした。 |
IIS 8.5 | <redirectHeaders> 要素は、IIS 8.5 では変更されませんでした。 |
IIS 8.0 | <redirectHeaders> 要素は、IIS 8.0 では変更されませんでした。 |
IIS 7.5 | <redirectHeaders> 要素は、IIS 7.5 では変更されませんでした。 |
IIS 7.0 | <httpProtocol> 要素の <redirectHeaders> 要素が IIS 7.0 で導入されました。 |
IIS 6.0 | 該当なし |
段取り
<httpProtocol>
要素の <redirectHeaders>
要素は、IIS 7 の既定のインストールに含まれています。
操作方法
IIS 7 の <redirectHeaders>
要素に値を追加するためのユーザー インターフェイスはありません。 プログラムで <redirectHeaders>
要素に値を追加する方法の例については、このドキュメントのコード サンプルのセクションを参照してください。
構成
属性
なし。
子要素
要素 | 説明 |
---|---|
add |
省略可能な要素です。 <redirectHeaders> コレクションに応答ヘッダーを追加します。 |
clear |
省略可能な要素です。 応答ヘッダーへのすべての参照を <redirectHeaders> コレクションから削除します。 |
remove |
省略可能な要素です。 応答ヘッダーへの参照を <redirectHeaders> コレクションから削除します。 |
構成サンプル
次の構成サンプルでは、IIS 7 が要求をリダイレクトしたときにのみ応答に追加されるカスタム HTTP ヘッダーと値を指定しています。
<configuration>
<system.webServer>
<httpProtocol>
<redirectHeaders>
<add name="X-Custom-Redirect-Header" value="MyRedirectValue" />
</redirectHeaders>
</httpProtocol>
</system.webServer>
</configuration>
Note
次の既定の <httpProtocol>
要素は、IIS 7 の ApplicationHost.config ファイルで構成されます。
<httpProtocol>
<customHeaders>
<clear />
<add name="X-Powered-By" value="ASP.NET" />
</customHeaders>
<redirectHeaders>
<clear />
</redirectHeaders>
</httpProtocol>
サンプル コード
次のコード サンプルでは、IIS 7 が要求をリダイレクトしたときにのみ応答に追加されるカスタム HTTP ヘッダーと値を指定しています。
AppCmd.exe
appcmd.exe set config "Default Web Site" -section:system.webServer/httpProtocol /+"redirectHeaders.[name='X-Custom-Redirect-Header',value='MyRedirectValue']"
C#
using System;
using System.Text;
using Microsoft.Web.Administration;
internal static class Sample
{
private static void Main()
{
using (ServerManager serverManager = new ServerManager())
{
Configuration config = serverManager.GetWebConfiguration("Default Web Site");
ConfigurationSection httpProtocolSection = config.GetSection("system.webServer/httpProtocol");
ConfigurationElementCollection redirectHeadersCollection = httpProtocolSection.GetCollection("redirectHeaders");
ConfigurationElement addElement = redirectHeadersCollection.CreateElement("add");
addElement["name"] = @"X-Custom-Redirect-Header";
addElement["value"] = @"MyRedirectValue";
redirectHeadersCollection.Add(addElement);
serverManager.CommitChanges();
}
}
}
VB.NET
Imports System
Imports System.Text
Imports Microsoft.Web.Administration
Module Sample
Sub Main()
Dim serverManager As ServerManager = New ServerManager
Dim config As Configuration = serverManager.GetWebConfiguration("Default Web Site")
Dim httpProtocolSection As ConfigurationSection = config.GetSection("system.webServer/httpProtocol")
Dim redirectHeadersCollection As ConfigurationElementCollection = httpProtocolSection.GetCollection("redirectHeaders")
Dim addElement As ConfigurationElement = redirectHeadersCollection.CreateElement("add")
addElement("name") = "X-Custom-Redirect-Header"
addElement("value") = "MyRedirectValue"
redirectHeadersCollection.Add(addElement)
serverManager.CommitChanges()
End Sub
End Module
JavaScript
var adminManager = new ActiveXObject('Microsoft.ApplicationHost.WritableAdminManager');
adminManager.CommitPath = "MACHINE/WEBROOT/APPHOST/Default Web Site";
var httpProtocolSection = adminManager.GetAdminSection("system.webServer/httpProtocol", "MACHINE/WEBROOT/APPHOST/Default Web Site");
var redirectHeadersCollection = httpProtocolSection.ChildElements.Item("redirectHeaders").Collection;
var addElement = redirectHeadersCollection.CreateNewElement("add");
addElement.Properties.Item("name").Value = "X-Custom-Redirect-Header";
addElement.Properties.Item("value").Value = "MyRedirectValue";
redirectHeadersCollection.AddElement(addElement);
adminManager.CommitChanges();
VBScript
Set adminManager = WScript.CreateObject("Microsoft.ApplicationHost.WritableAdminManager")
adminManager.CommitPath = "MACHINE/WEBROOT/APPHOST/Default Web Site"
Set httpProtocolSection = adminManager.GetAdminSection("system.webServer/httpProtocol", "MACHINE/WEBROOT/APPHOST/Default Web Site")
Set redirectHeadersCollection = httpProtocolSection.ChildElements.Item("redirectHeaders").Collection
Set addElement = redirectHeadersCollection.CreateNewElement("add")
addElement.Properties.Item("name").Value = "X-Custom-Redirect-Header"
addElement.Properties.Item("value").Value = "MyRedirectValue"
redirectHeadersCollection.AddElement(addElement)
adminManager.CommitChanges()