Hi, is it pos to do a browser independant redirect base on just the domain - not the whole url.
EG:
if the domain is
or
or
go to 'x'
M@)
EG:
if the domain is
or
or
go to 'x'
M@)
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
current_url = document.location.href;
if( current_url.indexOf( "your_test" ) != -1 )
<script type="text/javascript">
document.location.replace( "[URL unfurl="true"]www.bob.com"[/URL] );
</script>