ใช้ javascript ทำได้ครับ ต้องให้มันเปลี่ยนตั้งแต่ตอนอยู่บนเว็บเรา
พอมีตัวอย่างไหมหรอครับ
ประมาณนี้ครับ ลงเอาไปประยุกต์ดู
<html>
<head>
<title>Test</title>
<script type="text/javascript">
function showURL(el, url){
el.setAttribute('href', url);
el.removeAttribute('target');
}
function changeURL(el, url){
el.setAttribute('href', url);
el.setAttribute('target', '_blank');
}
</script>
</head>
<body>
<a href="https://www.google.co.th" onMouseOver="showURL(this, 'https://www.google.co.th');" onClick="changeURL(this, 'http://www.thaiseoboard.com');">Test Link</a>
</body>
</html>