• 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.

RewriteRule

M

MattElmore

Guest
I am attempting to emulate some of our old raq behavior on our new shiny plesk boxes. In short I am trying to get the /siteadmin and /admin aliases to go to :8443 port on any given domain. I thought the following should do it, but after adding it to the httpd.conf, while it doesn't error, it doesn't do anything at all.
Help?

RewriteEngine On
RewriteCond %{HTTP_HOST} ^([^:]+)
RewriteRule ^/admin/?$ http://%1:8443 [L,R]
RewriteCond %{HTTP_HOST} ^([^:]+)
RewriteRule ^/siteadmin/?$ http://%1:8443 [L,R]
 
Back
Top