• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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