-1

Is that possible to open 2 web page when user browse domain example.com

I would like to set it on homepage. When user browse domain example.com, it will go to example.com (link1) and example.com/articlename (link2)

How to do that? The link2 above must set open in new tab.

e12345678
  • 101
  • 4

1 Answers1

0
<a href="link1" onclick="window.open('link2');
return true;">Click Link</a>

When user Click Link, it will go to (link1) and specific page (link2) open in new tab.

verebuy
  • 1
  • 2