地址栏中的WWW会导致问题

时间:2011-01-24 23:04:55

标签: database vbscript asp-classic

我有一个让我疯狂的愚蠢问题。我有ASP编程的网站,当你使用像http://mysite.com/这样的地址时,它会起作用。如果您使用http://www.mysite.com/则无效。基本上当你在地址的开头使用“www”时,网站将无法正常运行,特别是登录页面根本不起作用。

任何想法????

2 个答案:

答案 0 :(得分:4)

这个问题属于其他地方,但这是你可以做的事情。

更改您网站的public_html文件夹中的.htaccess文件,以便从http://www.mysite.com重定向到http://mysite.com

RewriteEngine on
RewriteCond %{http_host} www\.mysite\.com
RewriteRule (.*) http://mysite.com/$1 [r=301,l]

如果您使用IIS,请下载URL Rewrite Module 修改web.config文件以包含以下内容:

<configuration>
  <system.webServer>
    <rewrite>
      <rules>
        <rule name="Redirect from WWW" stopProcessing="true">
          <match url=".*" />
          <conditions>
            <add input="{HTTP_HOST}" pattern="^www.mysite.com$" />
          </conditions>
          <action type="Redirect" url="http://mysite.com/{R:0}"
               redirectType="Permanent" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>

这被称为“规范重定向”。

答案 1 :(得分:0)