pete_398
Member
Posted 11 months ago #
I got an SSL certificate to use for doing all the admin side of things on the website. have installed WP 3.1.3, BUT
is SSL, that is all links are
https://example.com
How do I just make it SSL for 'me' (admin), and all other web users (public) they only see http://example.com , please ?
Pete
Set your site/home URL to http://example.com/, ie. what you expect the public to access.
Next, read this: http://codex.wordpress.org/Administration_Over_SSL
It sounds like you want to SSL the Login form and the Admin area, so you'd use this in your wp-config.php file:
define('FORCE_SSL_ADMIN', true);
pete_398
Member
Posted 11 months ago #
Dion, thanks very much, that is just what I need. :)