엣지브라우저 리다이렉트 코드 (javascript)
ie로 접속시에 엣지브라우저가 자동으로 켜지게하는 코드입니다.
if (window.navigator.userAgent.match(/MSIE|Internet Explorer|Trident/i)) {
window.location = "microsoft-edge:" + window.location.href;
}
엣지브라우저 리다이렉트 코드 (html)
ie로 접속시에 엣지브라우저가 자동으로 켜지게하는 코드입니다.
<script>
if (window.navigator.userAgent.match(/MSIE|Internet Explorer|Trident/i)) {
window.location = "microsoft-edge:" + window.location.href;
}
</script>