PDA

View Full Version : Redirecting to https


rebecca
03-04-2005, 06:15 AM
Hello,
I just installed ssl on a forum I am running. I also have it password protected with .htacess.

I'd like to force the users to use the https:// url - does anyone know if the .htaccess redirect would use the https:// before or after the initial login?

If it is after, is there another way to redirect a directory to look at the ssl port or https:// link?

Thanks for your help.

Rebecca

chilipie
03-04-2005, 07:59 AM
.htaccess file:
Redirect / https://...
Replace the slash (/ - root directory) with the directory you want to redirect from - replace the dots (...) with the address (URI) you want to redirect to.

:)