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

Help - Redirect http to https

I

ikarumbah

Guest
I have created a vhost.conf file under /home/httpd/vhosts/<domain-name>/conf with the following line:
Code:
Redirect /forum [url]https://[/url]<domain-name>/forum
I ran the following command from root:
Code:
/usr/local/psa/admin/sbin/websrvmng --reconfigure-vost --vhost-name=<domain-name>
I also restarted httpd service too and the redirect does not work.

I also added vhost_ssl.conf as well with the same line of code with no luck.

I know I'm missing something simple here. Is this a job for the Rewrite Engine? If so, can someone give me a working example or direct me to a web site with more information about this?

Thanks,

Lee
 
I wouldn't even bother with htaccess. If you're using httpdocs and httpsdocs then just make your forums in the httpsdocs and then make /forum in httpdocs and make the following index.php file
PHP:
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location:https://yourdomain.com/forum");
exit;
?>

Quick, easy and doesn't require any recoding.
 
Back
Top