• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

How can we make all website requests go to www.xxx

Hello,

You will have to setup the redirection in .htaccess file for your domain so that all traffic will be redirect to www
 
Hello,

You will have to setup the redirection in .htaccess file for your domain so that all traffic will be redirect to www
 
Thank you for your response InderS. I added this in .htaccess:
Code:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain.com [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 (L)
but that is not working. Can you possibly help me with what is wrong with that? In the error_log I see
Code:
[Wed Jun 18 13:14:52 2014] [alert] [client 111.222.333.444] /var/www/vhosts/domain.com/httpdocs/.htaccess: RewriteRule: bad flag delimiters
I hope that helps identify what I have done wrong?
 
Back
Top