• 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

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