루트에 있는 .htaccess를 수정을 하여 간편하게 https를 적용할 수 있다.
Wordpress .htaccess 파일 수정
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{ENV:HTTPS} !=on
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
keywords : 워드프레스 htaccess https, wordpress htaccess https, 워드프레스 https, wordpress https
반응형
'Wordpress' 카테고리의 다른 글
워드프레스 리비전(Revision) 삭제, 제한걸기, 기능 비활성화 (0) | 2021.03.17 |
---|
댓글