Where to put redirecting SSL Code in RapidWeaver?

Where to put redirecting SSL Code in RapidWeaver? Please help me:)

You can create an htaccess (if one does not already exist) file in the root of your server, to handle this.

Inside the .htaccess file :

RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} 

This tut is quite straightforward, and highlights some of the issues like hidden files :

5 Likes

This topic was automatically closed 6 days after the last reply. New replies are no longer allowed.