요청url에 따라 특정 페이지로 강제로 이동하는 소스
<html>
<head>
<title>TEST</title>
<script>
var nowURL = window.document.URL;
if(nowURL=='https://test1.com/')
{
location.href= 'https://test1.com/login.do';
}
else if(nowURL=='http://test2.com/')
{
location.href= 'http://test2.com/main.do';
}
</script>
</head>
<body>
</body>
</html>
'WEB WAS > WEB' 카테고리의 다른 글
[아파치] mod_jk 설치하고 tomcat과 연결하기 (0) | 2021.10.14 |
---|---|
[node js] 리액트 빌드방법 (0) | 2021.06.22 |
[아파치] htc파일 실행이 안될 때 (0) | 2020.12.18 |
[apache/tomcat] AJP 통신할때 대용량 파일 전송 (0) | 2020.12.01 |
[아파치] uriworkermap.properties 설정 가이드 (1) | 2020.11.03 |