In ISPConfig3 > Sites > Web Domain... Domain: yourdomain.com, Auto-Subdomain: www.
If you want to redirect then with mod_rewrite installed and enabled put one of these in your .htaccess file...
To direct all
www.example.com to example.com
Code:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.yourdomain\.com$ [NC]
RewriteRule ^(.*)$ http://yourdomain.com/$1 [L,R=301]
</IfModule>
To direct all example.com to
www.example.com
Code:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} ^yourdomain\.com$ [NC]
RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [L,R=301]
</IfModule>
Recent comments
9 hours 46 min ago
10 hours 46 min ago
14 hours 33 min ago
15 hours 47 min ago
19 hours 23 min ago
1 day 2 hours ago
1 day 11 hours ago
1 day 13 hours ago
2 days 4 hours ago
2 days 6 hours ago