将IP地址重定向到域名;来自Godaddy的域名和来自aws amazon的服务器

时间:2017-02-15 09:40:41

标签: model-view-controller iis-7

我正在尝试将域名的IP地址重定向到域名,但遇到了麻烦。 IP地址不会重定向到下面的重定向语句中列出的域名。

IP地址为http://54.163.166.178/

我在web.config文件中设置了以下规则:

    <configuration>
    <system.webServer>
     <rewrite>
      <rules>
        <rule name="IP Hit" stopProcessing="true">
          <match url="(.*)" />
 <conditions>
            <add input="{HTTP_HOST}" pattern="54.163.166.178" />
          </conditions>
          <action type="Redirect" url="http://www.shopindeal.in/{R:1}"redirectType="Permanent" />
        </rule>
      </rules>
    </rewrite>  
</system.webServer>
</configuration>

A(主持人)

@ - &gt; 54.163.166.178

CNAME(别名)

www - &gt; @

也在

中完成
- <system.web>
       <compilation debug="true" targetFramework="4.5.2" />
       <customErrors mode="Off"/> </system.web>

在aws上部署后会出错

500 - 内部服务器错误。 您正在查找的资源存在问题,无法显示。

还有什么我想念的吗?我不确定为什么这不起作用。

0 个答案:

没有答案