새로운 웹 페이지를 만들어서 자바스크립트로 리다이렉트 처리를 할 수 있습니다.
템플릿 HTML을 다음과 같이 수정합니다.
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</head>
<body>
<script>
window.location.href = window.location.href.replace('test2', 'test1');
</script>
</body>
</html>
감사합니다. 이렇게 하면 한번에 해결이 가능하군요. ^^