.htaccess ftp숨긴파일 강제 열어서 보이긴 하는데
본문
php txt 이런걸로 저장해도 강제로 https 접속이 안되네요? ㅠㅠ
http로 주의요망 이렇게 떠버려요
<ifmodule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</ifmodule>
이렇게 내용넣었는데 왜이럴까요??.. 제가 내용이틀린걸까요?
답변 1
그냥 common.php에서 상단에
//https접속이 아닐때 강제로 리다이렉트 or 기존 도메인 접속시 리다이렉트
if(!$_SERVER['HTTPS'] || $_SERVER["HTTP_HOST"] != 'ye-ah.net'){
echo"<meta http-equiv='refresh' content='0;url=".G5_HTTPS_DOMAIN.$_SERVER['REQUEST_URI']."'>";
exit;
}
추가해주세요
!-->
답변을 작성하시기 전에 로그인 해주세요.