메뉴 건너뛰기

프로그램언어

2023.01.12 16:51

PHP http -> https 로 전환

조회 수 236 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

http:// 를  https:// 로 전환 

 

 

보안 SSL을 설치하여  http:// 로 접속을  https:// 로 전환하는 것입니다.

 

 

1. PHP 서버 변수를 이용

index.php 파일에 넣거나, 공통페이지 상단에 넣는다.

 

<?

if(!isset($_SERVER["HTTPS"])) {  

   header('Location: https://www.domainname.com:444');

}

?>

 

 

2. 아파치 Rewrite 모듈 이용

 

상위 디렉토리에 .htaccess 파일을 생성한다.

 

<IfModule mod_rewrite.c>

  RewriteEngine On

  RewriteCond %{HTTPS} off

  RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

</IfModule>

 


  1. PHP 네이버블로그 원격 글쓰기 API 소스

  2. No Image 07Mar
    by
    2017/03/07 Views 17004 

    php 내장함수

  3. No Image 07Mar
    by
    2017/03/07 Views 18629 

    PHP 날짜/시간 정리

  4. No Image 06Mar
    by
    2017/03/06 Views 16707 

    PHP 날짜, 시간 관련 함수. date(), mktime()

  5. No Image 13Apr
    by
    2017/04/13 Views 17673 

    PHP 날짜 함수

  6. php 간단 심플한 달력만들기

  7. PHP 가변변수 $$

  8. No Image 12Jan
    by
    2023/01/12 Views 251 

    PHP ZIP 압축파일 만들기

  9. PHP XML 문서파싱 (SAX 방식 , DOM 방식)

  10. No Image 12Jan
    by
    2023/01/12 Views 234 

    php www 붙이기

  11. PHP switch 문

  12. No Image 12Jan
    by
    2023/01/12 Views 197 

    PHP str_replace php 문자열치환

  13. No Image 27Oct
    by
    2018/10/27 Views 3536 

    PHP split()와 explode()의 차이점

  14. No Image 12Jan
    by
    2023/01/12 Views 220 

    PHP SimpleHtmlDom Parser로 HTML 파싱하기

  15. No Image 26Mar
    by
    2021/03/26 Views 308 

    PHP Notice: Use of undefined constant ... assumed ... 오류

  16. No Image 22Dec
    by
    2016/12/22 Views 19972 

    PHP Mcrypt 라이브러리를 활용한 암호화 시스템

  17. No Image 19Feb
    by
    2019/02/19 Views 2183 

    PHP http 를 https 로 전환(redirect), http->https

  18. No Image 12Jan
    by 조쉬
    2023/01/12 Views 236 

    PHP http -> https 로 전환

  19. No Image 06Mar
    by
    2017/03/06 Views 18266 

    PHP EXCEL export시 시트 이름 지정하여 여러 시트에 데이터 쓰기

  20. PHP error 메시지 출력

Board Pagination Prev 1 ... 8 9 10 11 12 13 14 15 16 17 Next
/ 17

하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved