Dato che in tanti non sanno cosa è o come funziona il CLOAK-MASKING, ho pensato giustamente di scrivere un pezzo di codice standard che si utilizza per masherare l'url.
Ciò che viene utilizzato sono 2 FRAME in 1 FRAMESET:
Codice HTML:
<html>
<head>
<title>....QUI IL TITOLO DELLA TUA PAGINA CHE VUOI MASCHERARE.....</title>
</head>
<frameset rows="0,*" cols="*" frameborder="NO" border="0" framespacing="0">
<frame src="none" noresize marginwidth="0" marginheight="0">
<frame src="http://.....QUI L'URL DELLA PAGINA DI DESTINAZIONE...." scrolling="AUTO" noresize marginwidth="0" marginheight="0">
</frameset>
<noframes><!-- IN CASO I FRAME FOSSERO DISABILITATI -->
<body>
<a href="http://.....QUI L'URL DELLA PAGINA DI DESTINAZIONE....">
...QUI LA DESCRIZIONE DELLA PAGINA O IL TITOLO...
</a>
</body>
</noframes>
</html>
CIAO