我正在尝试设置我的 apache 服务器以将 domain.com 重定向到 www.domain.com,但遇到了麻烦。为了节省我重新发布我所在位置和我尝试过的方法的时间,这里提供了指向我在 LQ 上现有帖子的链接。
http://www.linuxquestions.org/questions/showthread.php?p=5348110
答案1
您需要做的就是向/etc/apache2/sites-available/domainname.vhost
文件添加重定向行,例如:
<VirtualHost *:80>
ServerName example.com
Redirect permanent / http://www.example.com/
</VirtualHost>