强制使用WWW域名访问站点

怎样使输入example.com 域名的用户跳转到www.example.com 的域名上?

方法一:添加WWW域的A记录,在使用不带WWW的域名通过CNAME记录跳转到WWW域名;

方法二:对于 Apache 服务器可以更改 .htaccess 文件记录,将feaink.com修改为自己的网址:

RewriteEngine on
rewriteCond %{http_host} ^feaink.com [NC]
rewriteRule ^(.*)$ http://www.feaink.com/$1 [L,R=301]

IIS服务器,在IIS 7.0以上的版本编辑web.config,编辑根目录下的web.config文件,在文件里增加如下内容,同样将feaink.com修改为自己的网址:

<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
 <system.webServer>
  <rewrite>
   <rules>
    <rule name=”WWW Redirect” stopProcessing=”true”>
     <match url=”.*” />
     <conditions>
      <add input=”{HTTP_HOST}” pattern=”^feaink.com$” />
     </conditions>
     <action type=”Redirect” url=”http://www.feaink.com/{R:0}” redirectType=”Permanent” />
    </rule>
   </rules>
  </rewrite>
 </system.webServer>
</configuration>

网站支持https的话,可以将重定向地址也修改为https


发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注