url重定向错误到www或https

时间:2015-10-09 08:10:45

标签: url redirect web https web-config

有时我的网站会将访问者重定向到我的错误页面" is_error.aspx" 当一些人打开主页面或任何其他页面时,我的网站是ASP.NET,我使用的是Windows Server 2012

web.config包含以下行:

         <customErrors mode="On" defaultRedirect="/is_error.html">
              <error statusCode="404" redirect="/is_error.html" />
         </customErrors>
    </system.web>
    <system.webServer>
     <defaultDocument>
      <files>
        <add value="index.aspx" />
      </files>
     </defaultDocument>
     <httpErrors errorMode="DetailedLocalOnly">
      <remove statusCode="500" subStatusCode="-1" />
      <remove statusCode="403" subStatusCode="-1" />
      <remove statusCode="401" subStatusCode="-1" />
      <remove statusCode="404" subStatusCode="-1" />
      <error statusCode="404" prefixLanguageFilePath=""       path="/is_error.html" responseMode="ExecuteURL" />
      <error statusCode="401" prefixLanguageFilePath="" path="/is_error.html" responseMode="ExecuteURL" />
      <error statusCode="403" prefixLanguageFilePath="" path="/is_error.html" responseMode="ExecuteURL" />
      <error statusCode="500" prefixLanguageFilePath="" path="/is_error.html" responseMode="ExecuteURL" />
    </httpErrors>
   <rewrite>
            <rules>
                <rule name="CanonicalHostNameRule1">
                    <match url="(.*)" />
                    <conditions>
                        <add input="{HTTP_HOST}" pattern="^www\.feee3\.com$" negate="true" />
                    </conditions>
                    <action type="Redirect" url="http://www.feee3.com/{R:1}" />
                </rule>
                <rule name="feee3Https" stopProcessing="true">
                    <match url="(.*)" />
                    <conditions>
                        <add input="{HTTPS}" pattern="^OFF$" />
                    </conditions>
                    <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="SeeOther" />
                </rule>
            </rules>
        </rewrite>      
    </system.webServer>

&#34; is_error.html&#34;页面:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>feee3.com</title>
<script type="text/javascript">
function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
</script>
</head>
<body onload="MM_goToURL('parent','is_error.aspx');return document.MM_returnValue">
</body>
</html>

我不知道从我的域名重定向到&#34; www&#34; 或者将其重定向到&#34; https&#34; ! 或者我可以写&#34;重写&#34; web.config中的部分以另一种方式?所以在一行中它重定向到&#34; www&#34;和&#34; https&#34; ?

1 个答案:

答案 0 :(得分:0)

经过很长一段时间我发现了问题,我只是替换web.config中的行:

<customErrors mode="On" defaultRedirect="/is_error.html">
          <error statusCode="404" redirect="/is_error.html" />
</customErrors>

这一行:

<customErrors mode="Off"/>

我用Google搜索了我的网站然后点击了链接,我的网站被打开了 没有错误,然后我按退格键回到上一页(我的谷歌搜索我的网站)并再次点击我的链接,我重复这个约50次 最后出现错误,找不到图像路径 错误来自我的数据库,在DataBase中存储了图像路径,但网站文件夹中没有图像,所以我只删除了数据库记录,并且每件事情都很完美。