我正在尝试将域名的IP地址重定向到域名,但遇到了麻烦。 IP地址不会重定向到下面的重定向语句中列出的域名。
我在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>
@ - &gt; 54.163.166.178
www - &gt; @
也在
中完成- <system.web>
<compilation debug="true" targetFramework="4.5.2" />
<customErrors mode="Off"/> </system.web>
在aws上部署后会出错
500 - 内部服务器错误。 您正在查找的资源存在问题,无法显示。
还有什么我想念的吗?我不确定为什么这不起作用。