• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

Https and WWW

Walter Smith

New Pleskian
Hello,

I would suggest two main features and very useful features:
-Being able to force HTTPS on domain name.
-Being able to force WWW prefix on domain name.
 
To force SSL I would recommend using an .htaccess file.
I don't think there is a way / setting to force it via Plesk.

the www. forcing can also be achieved over .htaccess

Here is an example:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://www.%{HTTP_HOST}%{REQUEST_URI}
</IfModule>

I tried it on my local Webserver (wamp) and it seemed to work.
 
Also why forced www-prefix would be required? Why you don't want site accessed as simply domain.com?

Regards
 
Why force SSL Connection:
In order to make sure users only browse our domain using SSL connection. as this is by far better security wise.
Just like how facebook force SSL and Gmail force SSL.
Why force WWW Prefix:
This helps in SEO and on Google+ and facebook likes and search engines. If you already have most links with WWW prefix, it would be better to make that a "standard".

And these can always be turned Off/On using Plesk Panel if implemented.
 
I know this doesn't contribute much to the thread, and I apologize for that; In my opinion asking if the WWW should be enabled or not is outdated. It should always be enabled and not allowed to be turned off. It doesn't have to be used if they don't want to but it should always be on.
 
Back
Top