You cannot do this with meta redirects. Take javascript.
<script type="text/javascript">window.open('http://google.com');</script>
Either that, or add target="_blank"to the source link / form that landed on this page "Photo Gallery Redirects."
<a href="http://google.com" target="_blank">click here</a>
or
<form action="http://google.com" target="_blank">
<input type="submit" />
</form>
Not compliant with XHTML / HTML5, but it works. Alternatively, you can simply add rel="ext"and use some kind of Javascript snippet to place anyway target="_blank".
source
share