To force https, is it best to change config.php:
define('OW_URL_HOME', 'https://www.mysite.com/');
or add the following to the very beginning of htaccess:
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.mysite.com/$1 [R,L]
or best to use both?
I noticed the config.php did not enforce https on Chrome. Currently I'm using both.