How to prevent the article was reprinted

Reprinted from the garden blog  [  http://www.yzznl.cn  ]

 

Blog article is reprinted certainly not a bad thing, the garden today talking about how to prevent "malicious reprint." Malicious refers to reprint some unconventional reprint behavior, such as volume reprint blog many articles, or automatically reproduced by programs, delete all the original author byline and copyright information such as text link reproduced, I believe many of my friends have experienced a blog this situation, here are some garden on our approach against such malicious reproduced.

Through technical means to remind

We can use the JS code to make others automatically add copyright information in the copy of the article. When people copy your article content when the copyright information will be automatically added to the original address and copy the contents in order to remind people to copy copyright note. Alternatively, you can modify the template article, adding a paragraph in the article tail "reproduced please specify: Reprinted from certain blog," and the original link address, to be reminded. For example, the garden site in the lowest part of the article there is such a prompt "the original address: http: //www.yzznl.cn/archives/19.html please indicate the source, thank you very much!" Here is the article by copying the code to remind Note that the code's copyright information:

  • Z-Blog System:
    edit b_article-single.html this template file, add the following code to the appropriate location.
    <Script type = "text / JavaScript">
    document.body.oncopy = function () {
    event.returnValue = to false;
    . T = document.selection.createRange var () text;
    var = S "used herein is derived from <# ZC_BLOG_TITLE # > <# ZC_BLOG_HOST #>, the original address: <# Article This article was / URL #> ";
    clipboardData.setData ( 'the text', T + '/ R & lt / n-' + S + '/ R & lt / n-/ R & lt / n-/ R & lt / n-' );
    }
    </ Script>
  • wordpress system:
    the template file in the editing themes single.php, in place of code or less.
    <Script type = "text / JavaScript">
    document.body.oncopy = function () {
    event.returnValue = to false;
    . T = document.selection.createRange var () text;
    var = S "used herein is derived from <php bloginfo? ?? ( 'name'); > <php echo get_settings ( 'home');>, the original address:??? <PHP the_permalink ()> ";
    clipboardData.setData ( 'the text', '/ R & lt / n-' + + T '/ R & lt / n-' + S + '/ R & lt / n-');
    }
    </ Script>

Appropriately increasing the chain
often mentioned in some previous articles when writing articles, and increase their hyperlinks so that if the other side is reproduced, it will bring to their blog backlinks, while also via Google blog search timely tracking to these pages.

To Google  AdSense complaints
to reprint some domestic garbage station, you can contact the webmaster request deletion, if not delete, it can Google AdSense to relevant departments of complaints, but complaints process in the country, it can be tricky. Methods complaints can view: how to inform google has violated the copyright on my site .

Picture increase watermark and security chain
to use the program is also a way to increase the watermark in the picture in the blog post, but the garden is not recommended to use this method, because there may be some pictures taken not own, if the increase in the number of pictures that you have no copyright watermark is very bad, it is recommended to use anti-hotlinking technique, modify .htaccess file, when it was stolen, the picture can be displayed is another picture.

Contact the other party editing
some large portal reprint your blog articles are usually their editors do, and such reprint impact on the user's blog worst, the worst result may be the original blog article is punished by search engines. For this type of reprint, should promptly contact the relevant personnel portal, requiring compliance with CC agreement, reproduced delete articles.

Personalized blog writing
who try to personalize the style of writing, in the article can add your own screen name, nickname, etc., so that even without a link reprint, a reader can see the original author of this article Yes.

Right ban page, select all, copy and save functions
for malicious plagiarist, in order to safeguard their legitimate rights, we can only complete copy of the article is prohibited. But if it is not forced, it is recommended that this method is garden or less better. Because it also caused unfriendly impact on viewers, after all, the trade-off approach is worth the candle.

The use of encryption software to encrypt web page
, we can also use a product called "web page encryption experts" small software to quickly achieve the purpose of encryption page, the software interface is very simple, only need to select the source and goal pages, in addition to software also provides practical web file backup function. First, select the encrypted files in use, and then determine the target file, click the "Encrypt" button on it, if you need to decrypt the file, just select the file in the same way and then select the decryption function. The software also has a convenient and practical directory bulk encryption feature, you can file a one-time web folder encryption or decryption of all, friends who are interested can download a try Oh.

How search engines identify the original content of the
search engine because it is controlled by the program, so if the search engines to crawl, crawl first to reprint your articles reprinted without link with the site content, crawl your content, the default he will determine their content is original, your original article has become the reproduced works. In fact, this also can not blame the search engine, the search engine after all, no one's thinking, it is only according to certain rules that determine the article. In the current environment, we are still no better way to protect their copyright.

How to make your articles crawled for the first time
a good habit update is a prerequisite, we have to cultivate the habit of periodically updated website on a regular basis, gradually update the law, slowly crawling search engines will produce the corresponding rules, real-time to patronize your site, the first time included in your content, your article so the opportunity to be included in the priority will be larger. In addition, we can also put your own original content, published in the local search engines go out, such as some large kiosk, then we have to bring your own text links, search engines usually relatively high frequency of these updates kiosk real time capture, so that search engines will be identified along your article links truly original author who.

Blog The most important thing is their own brand marketing, a blog is the soul of the brand, and strive to improve the quality of their blog articles, so that more readers benefit from it, in fact, this is the most important, a blog with quality content and brand, then right in the search engine's weight will be high, when Internet users to find via search engines, blog text will be ranked first, even if other people then reproduced malicious, can not get traffic.

Garden Tips: use any encryption method inevitably there will be some limitations, we can according to the different needs of these schemes with them to use in practical applications, often play a multiplier effect.

 

Guess you like

Origin blog.csdn.net/soliy/article/details/5594193