如何隐藏我的源代码以免被复制

how to hide my source code so to not be copied(如何隐藏我的源代码以免被复制)
本文介绍了如何隐藏我的源代码以免被复制的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

最近有人告诉我,我的网站被复制了.当我查看他给我的链接时,除了徽标和文字外,该网站与我的网站相同.有没有办法隐藏我的代码?或者使无法右键单击我的页面?我在一些网站上看到,如果您访问 http://example.com/images/,它将显示访问权限拒绝,而不是包含所有图像的列表...他们是如何做到的?谢谢!

I was recently informed by someone that my website was copied. When I looked at the linked that he gave me I so that the site was identic to mine except for the logo and text. Is there a way to hide my code? Or to make it impossible to right click on my page? I saw on some websites that if you go to http://example.com/images/ it will show access denied, not a list with all your images...How do they do it? Thank you!

推荐答案

不要这样做!这样做没有意义,因为用户可以禁用脚本,并且有许多工具,例如 Firebug,用户可以通过这些工具查看代码.

Don't do this! It makes no sense to do this, since the user can disable the script, and there are many tools like Firebug by which a user can see the code.

确保商店安全的最佳方法是在门打开的情况下安装安全摄像头.

The best way to keep safe the store is installing a security camera while leaving the doors open.

您可以通过以下方式简单地禁用右键单击:

You can simply disable the right click by following:

<body oncontextmenu="return false">
  ...
</body>

<script language="javascript">
  document.onmousedown = disableclick;
  status = "Right Click Disabled";
  Function disableclick(e)
  {
    if(event.button == 2)
    {
      alert(status);
      return false; 
    }
  }
</script> 

以上代码来自这篇文章

这篇关于如何隐藏我的源代码以免被复制的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

how to remove this error quot;Response must contain an array at quot; . quot;.quot; while making dropdown(如何删除此错误quot;响应必须在quot;处包含数组。创建下拉菜单时(Q;))
Why is it necessary to use `document.createElementNS` when adding `svg` tags to an HTML document via JS?(为什么在通过JS为一个HTML文档添加`svg`标签时,需要使用`Document.createElementNS`?)
wkhtmltopdf print-media-type uses @media print ONLY and ignores the rest(Wkhtmltopdf print-media-type仅使用@media print,而忽略其余内容)
price depend on selection of radio input(价格取决于无线电输入的选择)
calculate price depend on selection without button(根据没有按钮的选择计算价格)
What should I consider before minifying HTML?(在缩小HTML之前,我应该考虑什么?)