메뉴 건너뛰기

프로그램언어

2023.01.12 16:51

PHP http -> https 로 전환

조회 수 262 추천 수 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 소스

    Date2018.02.09 Views12522
    Read More
  2. php 내장함수

    Date2017.03.07 Views17050
    Read More
  3. PHP 날짜/시간 정리

    Date2017.03.07 Views18672
    Read More
  4. PHP 날짜, 시간 관련 함수. date(), mktime()

    Date2017.03.06 Views16741
    Read More
  5. PHP 날짜 함수

    Date2017.04.13 Views17730
    Read More
  6. php 간단 심플한 달력만들기

    Date2023.01.12 Views264
    Read More
  7. PHP 가변변수 $$

    Date2019.02.19 Views1472
    Read More
  8. PHP ZIP 압축파일 만들기

    Date2023.01.12 Views288
    Read More
  9. PHP XML 문서파싱 (SAX 방식 , DOM 방식)

    Date2018.10.27 Views3612
    Read More
  10. php www 붙이기

    Date2023.01.12 Views255
    Read More
  11. PHP switch 문

    Date2015.04.14 Views21021
    Read More
  12. PHP str_replace php 문자열치환

    Date2023.01.12 Views221
    Read More
  13. PHP split()와 explode()의 차이점

    Date2018.10.27 Views3556
    Read More
  14. PHP SimpleHtmlDom Parser로 HTML 파싱하기

    Date2023.01.12 Views249
    Read More
  15. PHP Notice: Use of undefined constant ... assumed ... 오류

    Date2021.03.26 Views335
    Read More
  16. PHP Mcrypt 라이브러리를 활용한 암호화 시스템

    Date2016.12.22 Views20002
    Read More
  17. PHP http 를 https 로 전환(redirect), http->https

    Date2019.02.19 Views2204
    Read More
  18. PHP http -> https 로 전환

    Date2023.01.12 Views262
    Read More
  19. PHP EXCEL export시 시트 이름 지정하여 여러 시트에 데이터 쓰기

    Date2017.03.06 Views18319
    Read More
  20. PHP error 메시지 출력

    Date2015.04.14 Views20955
    Read More
Board Pagination Prev 1 ... 8 9 10 11 12 13 14 15 16 17 Next
/ 17

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

© k2s0o1d4e0s2i1g5n. All Rights Reserved