How to open link on a public page without making the user sign in

Winston
Tera Guru

Good afternoon, 

 

We have a public page we're trying to use to display information and links to users who will never sign into our system. When I try to use a link in the html each type still require the public user to sign into the system. Is there anyway I can link on the public page to an external site without it requiring the user to sign into the system?

 

These are the links i'm trying: 

<p>Blank<a href="www.Google.com" target="_blank">CLICK HERE</a></p>
<p>Self<a href="www.Google.com" target="_self">CLICK HERE</a></p>
<p>Parent<a href="www.Google.com" target="_parent">CLICK HERE</a></p>

1 ACCEPTED SOLUTION

RaghavSh
Kilo Patron

Try below: use https:// instead of http

<p>Blank<a href="www.Google.com" target="_blank">CLICK HERE</a></p>
<p>Self<a href="www.Google.com" target="_self">CLICK HERE</a></p>
<p>Parent<a href="www.Google.com" target="_parent">CLICK HERE</a></p>


Raghav
MVP 2023

View solution in original post

1 REPLY 1

RaghavSh
Kilo Patron

Try below: use https:// instead of http

<p>Blank<a href="www.Google.com" target="_blank">CLICK HERE</a></p>
<p>Self<a href="www.Google.com" target="_self">CLICK HERE</a></p>
<p>Parent<a href="www.Google.com" target="_parent">CLICK HERE</a></p>


Raghav
MVP 2023