If you want to redirect your website’s visitors to your www domain name, add this in your apache virtualhost configuration
1 2 3 | RewriteEngine On RewriteCond %{HTTP_HOST} ^domain.com$ RewriteRule ^/(.*)$ http: //www .domain.com/$1 [R=301,L] |
and don’t forget to enable rewrite module
1 | a2enmod rewrite |