Jul 262011
1) Apache .htaccess를 수정하기
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^/directory(.*)$ https://%{HTTP_HOST}/directory$1 [L,R]
2) phpMyAdmin의 config.inc.php파일 수정하기
// 적당한 아래쪽에 설정
$cfg[‘ForceSSL’] = true;
출처 : http://www.michaelbarton.name/2009/12/13/forcing-ssl-with-phpmyadmin/