Force WordPress SSL HTTPS Admin Login
Add this line to wp-config.php define(‘FORCE_SSL_ADMIN’, true); Of course you must have setup ssl on the site prior to this
Add this line to wp-config.php define(‘FORCE_SSL_ADMIN’, true); Of course you must have setup ssl on the site prior to this
RewriteEngine On Options -Indexes Options +FollowSymLinks RewriteBase / # force https for all URLs matching “subscribe.* # otherwise normal http request are unmolested # other methods that force ssl cause 301 redirects on # all pages RewriteCond %{HTTPS} =off RewriteRule ^subscribe https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d ## standard rule but causes redirect loops #RewriteRule . /index.php [L]...