IIS7でURLの書き換えを使用してexample.comを強制的にwww.example.comにリダイレクトするにはどうすればよいですか? web.configにはどのようなルールを適用する必要がありますか?ありがとう。
これは、*。fabrikam.comをwww.fabrikam.comにリダイレクトする RL Rewrite Module 2. のMicrosoftのサンプルです。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Add www" patternSyntax="Wildcard" stopProcessing="true">
<match url="*" />
<conditions>
<add input="{HTTP_Host}" pattern="www.fabrikam.com" negate="true" />
</conditions>
<action type="Redirect" url="http://www.fabrikam.com/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
より一般的にするために、任意のドメインで機能する次のURL書き換えルールを使用できます。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Add WWW" stopProcessing="true">
<match url="^(.*)$" />
<conditions>
<add input="{HTTP_Host}" pattern="^(?!www\.)(.*)$" />
</conditions>
<action type="Redirect" url="http://www.{C:0}{PATH_INFO}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
これを行うための最善の方法はわかりませんが、このweb.configを実行しているすべての古いドメイン/サブドメインを持つサイトがあります。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Transfer" stopProcessing="true">
<match url=".*" />
<action type="Redirect" url="http://www.targetsite.com/{R:0}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
仕事を成し遂げたようです。
これが役立つかどうかはわかりませんが、アプリレベルで行うことにしました。これを行うために私が書いたクイックアクションフィルターを次に示します。プロジェクトのどこかにクラスを追加するだけで、単一のアクションまたはコントローラー全体に[RequiresWwww]を追加できます。
public class RequiresWww : ActionFilterAttribute
{
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
HttpRequestBase req = filterContext.HttpContext.Request;
HttpResponseBase res = filterContext.HttpContext.Response;
//IsLocal and IsLoopback i'm not too sure on the differences here, but I have both to eliminate local dev conditions.
if (!req.IsLocal && !req.Url.Host.StartsWith("www") && !req.Url.IsLoopback)
{
var builder = new UriBuilder(req.Url)
{
Host = "www." + req.Url.Host
};
res.Redirect(builder.Uri.ToString());
}
base.OnActionExecuting(filterContext);
}
}
その後
[RequiresWwww]
public ActionResult AGreatAction()
{
...
}
または
[RequiresWwww]
public class HomeController : BaseAppController
{
..
..
}
それが誰かを助けることを願っています。乾杯!