Apache重定向自动添加www

时间:2017-11-07 08:49:47

标签: apache redirect

在apache virtualhost配置中,我将所有http请求重定向到此https

<VirtualHost 10.0.0.1:80>
        ServerName example.com
        Redirect permanent / https://example.com/
</VirtualHost>

但重定向后,它会将www添加到网址。所以网址变为https://www.example.com/。很抱歉,我的域名注册时没有www。那么如何在不添加www的情况下进行重定向?

我的服务器ubuntu 16.04和apache 2.4。

1 个答案:

答案 0 :(得分:0)

您可以在此设置中再添加一行

ServerAlias www.example.com

通过.htaccess

为用户进行一些重定向也很不错
RewriteCond %{HTTP_HOST} ^example.com$ [NC]
RewriteRule (.*) http://www.example.com/$1 [R=301,L]