• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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