No HTTP redirect icon in IIS

If you are looking to have HTTP Redirect feature on your IIS 7 server, you won’t see this feature until you have enabled the HTTP Redirection role on the server for it. This is kind of stupid for Microsoft for not have it enabled by default.

Another option to redirect is to create an index page with the something like below.

<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.0 Transitional//EN”>
<html>
<head>
<title>Redirecting…</title>
<meta http-equiv=”REFRESH” content=”0;url=http://newpage”></HEAD>
<BODY>
Please click <a href=”http://newpage”>here</a>, if automatic redirecting doesn’t work.
</BODY>
</HTML>