i found articles how to mask a normal url <a href="...
by frame or iframe for example but did not find how to mask script or link tag sources in my HTML page. For example, if i do not want to show and redirect visitors to my files when clicking on <script src="http://www.example.com/the-file-to-hide.js type='text/javascript'/>
or <link href='http://www.example.com/the-file-to-hide.css' rel='stylesheet' type='text/css'/>
.
The source or link should look like : src="the-file-to-hide.js" and when it is clicked, the url does not direct anyone to the file but the script or stylesheet file will not have a problem to execute on my website.
Thanks for your answers in advance !