Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Please be aware: Kaspersky Anti-Virus has been deprecatedWith the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.
You can also do something different if you don't want to outright deny the visitors content.
This allows you to send the public to another site, while allowing your own IP addresses to view a site in development or such:
<IfModule mod_rewrite.c>
RewriteEngine On
###### Allow Private Visitors ##########################
RewriteCond %{REMOTE_ADDR} !123.456.789.0 [NC]
RewriteCond %{REMOTE_ADDR} !123.456.789.1 [NC]
###### If Not Authorized, Send People Away #######################
RewriteRule ^(.*)$ https://someotherdomain.com/$1 [L,R=301]
</IfModule>
@G J Piper
That sounds interesting, but maybe not for this topic, but I will write here, because for me is in relation.
We have one old cakephp site, and at this moment we developing another site in .net to change it.
We will need that old php site. Not all, just site.com/admin part.
So at one moment, all other sites including homepage need to be redirected to that /admin page.
I'm wondering, if I use that rewrite rule, I would have problem with redirection loop?