반응형
로그인 페이지 등 특정 페이지를 http에서 https로 리다이렉션 하려면 어떻게 해야 할까요?
https로 서비스할 jsp 파일의 scripts에 다음과 같이 등록합니다.
1 2 3 4 5 6 7 8 9 | <scripts> function changUrl() { var currentAddress = location.href; if (currentAddress.indexOf ("http://") == 0) { currentAddress = currentAddress.replace("http://", "https://"); location.href = currentAddress; } } </scripts> | cs |
반응형
'IT 이야기 > Application' 카테고리의 다른 글
[Application] HTTP1.1 304 Not Modifie 에러 출력 및 브라우저에 흰화면 출력 (0) | 2019.11.25 |
---|---|
[Application] 첨부 파일이 1MB 이하만 등록하도록 설정하기 (0) | 2019.11.25 |
[Application] JBoss EAP에서 deploy 중 spring-modules-validation 에러 해결 방안 (0) | 2019.11.20 |
[Application] JBoss EAP에 AP소스를 추가하여 실행 중 TLD 에러 발생시 해결방안 (0) | 2019.11.20 |
[Application] JBoss EAP에 설정된 Datasources의 설정을 AP 소스에서 호출하는 방안 (0) | 2019.11.20 |
댓글