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

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