在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。
答案 0 :(得分:0)
您可以在此设置中再添加一行
ServerAlias www.example.com
通过.htaccess
为用户进行一些重定向也很不错RewriteCond %{HTTP_HOST} ^example.com$ [NC]
RewriteRule (.*) http://www.example.com/$1 [R=301,L]