如何隐藏我的源代码以免被复制 [英] how to hide my source code so to not be copied

查看:23
本文介绍了如何隐藏我的源代码以免被复制的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

最近有人告诉我,我的网站被复制了.当我查看他给我的链接时,除了徽标和文字外,该网站与我的网站相同.有没有办法隐藏我的代码?或者使无法右键单击我的页面?我在一些网站上看到,如果您访问 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> 

以上代码来自这篇文章

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

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆