워드프레스 HTTPS 적용시키기 위한 설정입니다. .htaccess 수정 RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] wp-config.php 내용 추가 define('WP_HOME','http://domain.com'); define('WP_SITEURL','http://domain.com'); #define('WP_ALLOW_MULTISITE', true); if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVE..