You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Chris Chia <ch...@tch.anu.edu.au> on 2017/08/01 09:28:15 UTC

[users@httpd] Hide URL link of target

Hi

 

Very newbie question.

 

Is there a way to hide the URL link when hover over the link and also when browser is in the process of connecting to target site.

 

This is a legitimate reason to do so, though browsers may have disable such scenario.

 

Running Ubuntu and apache.

 

 

Thanks

 

 


re: [users@httpd] Hide URL link of target [wd-vc]

Posted by "Bremser, Kurt (Allianz Technology GmbH)" <Ku...@allianz.at>.
You can get some hints here:
https://stackoverflow.com/questions/3108425/dont-want-to-show-address-in-the-status-bar-while-hovering-a-link
one of them being the use of javascript like this:
<a href="javascript:;" onclick="location.href='http://conglomo.co.nz/'">Conglomo</a>

But a look at the source code on the browser (you cannot block that from the server) will reveal the URL anyway.
Bottom line: only override the URL in the status bar if you want to put something _really useful_ there, otherwise let it display as usual.

Kurt Bremser
Allianz Technology GmbH

Newton was wrong. There is no gravity. The Earth sucks.
________________________________________
Von: Chris Chia [chris@tch.anu.edu.au]
Gesendet: Dienstag, 1. August 2017 11:28
An: users@httpd.apache.org
Betreff: **SPAM?** [users@httpd] Hide URL link of target [wd-vc]

Hi

Very newbie question.

Is there a way to hide the URL link when hover over the link and also when browser is in the process of connecting to target site.

This is a legitimate reason to do so, though browsers may have disable such scenario.

Running Ubuntu and apache.


Thanks



Allianz Technology GmbH 
1130 Wien, Hietzinger Kai 101-105 
FN 365014k, Handelsgericht Wien 
UID: ATU 66614737 

http://www.allianz.at 

******************************************************** 
Dieses E-Mail und allfaellig daran angeschlossene Anhaenge 
enthalten Informationen, die vertraulich und 
ausschliesslich fuer den (die) bezeichneten Adressaten 
bestimmt sind. 
Wenn Sie nicht der genannte Adressat sind, darf dieses 
E-Mail samt allfaelliger Anhaenge von Ihnen weder anderen 
Personen zugaenglich gemacht noch in anderer Weise 
verwertet werden.
Wenn Sie nicht der beabsichtigte Empfaenger sind, bitten
wir Sie, dieses E-Mail und saemtliche angeschlossene
Anhaenge zu loeschen. 

Please note: This email and any files transmitted with it is 
intended only for the named recipients and may contain 
confidential and/or privileged information. If you are not the 
intended recipient, please do not read, copy, use or disclose 
the contents of this communication to others and notify the 
sender immediately. Then please delete the email and any 
copies of it. Thank you.

********************************************************

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


RE: [users@httpd] Hide URL link of target

Posted by "Berneburg, Cris J. - US" <cb...@caci.com>.
Chris

Chris Chia wrote:

Chris> Is there a way to hide the URL link when hover over the link
Chris> and also when browser is in the process of connecting to target site.

Gillis J. de Nijs replied:

Gillis> Displaying the URL when hovering over the link or loading
Gillis> the site is something your browser does, and not something
Gillis> Apache httpd has any control over.

Good point.  :-)

It is possible code all links to call JavaScript to submit forms.  Therefore, each link would require it's own form, and each link would in effect be a POST and not a GET.  Hovering the mouse over a link would not show the URL in the bubble or status bar.

Kurt Bremser also replied:

Kurt> a look at the source code on the browser (you cannot
Kurt> block that from the server) will reveal the URL anyway

Also a good point.  :-)

It might be possible to encode the URL's in the forms in some way to hide the values, but they could still be decoded by a determined person.

--
Cris Berneburg
CACI Lead Software Engineer


Re: [users@httpd] Hide URL link of target

Posted by "Gillis J. de Nijs" <gi...@jink.net>.
Hi Chris,

Displaying the URL when hovering over the link or loading the site is
something your browser does, and not something Apache httpd has any control
over.

Cheers,
Gillis

On Tue, Aug 1, 2017 at 11:28 AM, Chris Chia <ch...@tch.anu.edu.au> wrote:

> Hi
>
>
>
> Very newbie question.
>
>
>
> Is there a way to hide the URL link when hover over the link and also when
> browser is in the process of connecting to target site.
>
>
>
> This is a legitimate reason to do so, though browsers may have disable
> such scenario.
>
>
>
> Running Ubuntu and apache.
>
>
>
>
>
> Thanks
>
>
>
>
>