Precautions for wechat domain name sealing

We often encounter our own regular website links, which are intercepted by wechat for no reason. Everyone is worried abo...

We often encounter our own regular website links, which are intercepted by wechat for no reason. Everyone is worried about this problem. There are many technologies of domain name anti sealing, two-dimensional code anti sealing and wechat anti red circulating on the network, but the effect is not ideal. Because there are too many unscrupulous merchants who can't use code to realize domain name anti sealing, I don't think that it's man-made to intercept domain names, It's robots, but too many users buy second-hand domain names in batches, and most of them are domain names of the same filing subject. Once the subject is pulled black, all domain names accessed by wechat will be blocked in linkage. This is your common second block. Some of them will die before they even go online.

Wechat monitoring object

Tencent's key monitoring objects: wechat business, finance, gambling, color flow, direct sales, gray projects, etc. Because wechat attribute is social, it is impossible not to monitor and supervise these transactions and advertising activities, so wechat's danger can be imagined, so it has become a target of public criticism. Wechat will focus on cracking down on people's fraud in illegal marketing activities. The root causes of sealing are as follows:

1. The wechat that was reported and sealed before (group post, friend circle advertisement).

2. More than 80% of friends are similar (to deal with group control system).

3. Frequent switch of wechat account and frequent transfer are risky (double open, multiple open).

4. Abuse of marketing software, add software, virtual positioning software, red packet software (abuse of software).

Why domain name is blocked

  1. The source of the domain name, which has a black history in wechat, has been used by people and has a bad record in wechat, was later restored by people in various ways and transferred to you. This domain name is easy to be sealed.

  2. Too much domain name sharing and forwarding.

  3. The content of the site pointed to by the domain name is illegal, and the site content is recorded with html structure characteristics by wechat.

  4. The structural characteristics of wechat site URL record for content violations.

  5. Peer competition, malicious report.

  6. The server ip is added to the blacklist.

Anti sealing solution

  1. Domain name of old station and famous station

It's actually the springboard principle. The domain names that have been established for a long time and are relatively well-known in the industry are the least likely to be blocked by wechat. When the jump code is injected into the above-mentioned website and then I use my website, such as security, to make a jump and point to the landing page, the possibility of being blocked by wechat is very small; there are also peers who use integration software to solve this problem, which I can discuss separately with you.

  1. Wechat domain name detection interface

Wechat domain name detection interface, to prevent trouble in advance. This can be developed by yourself or purchased.

  1. Random access landing page

Take domain A as the shared domain name;

Take domain B as the landing domain name (that is, the domain name that users visit and see);

Only when we jump from domain A to domain B, domain B displays the content we want to show to users. If we directly copy the web address of B, we will only open A wrong page or non illegal content. That is to say, if TA clicks the upper right corner to report, the reported content and the visited content are the same web address, but the displayed content is different. So as to prevent the domain name from being blocked to the greatest extent.

  1. Report button at the top right corner of wechat

Through technology, the report button in the upper right corner of wechat is blocked, which makes users unable to report directly. The report function of wechat is directly blocked, and the effect is very good. Wechat technology is constantly upgrading and updating, and there will be an opportunity to summarize the anti blocking mechanism and experience for everyone to exchange in the future.

  1. Domain firewall

Through technical means to promote domain name and firewall for analysis, after analysis in wechat promotion, detection system is unable to capture, so as to achieve wechat domain name anti sealing and anti interception.

This technology is also a relatively advanced anti sealing technology at present. Compared with the old technology used by the major platforms, the advantages can be said to be very large and the anti sealing stability effect is good.

By the way, this is a popular science for you. Domain name anti blocking technology can only extend the life of domain names. It is impossible to do the domain name immortal. It's bullshit that all platforms say 100% anti blocking. I hope you won't be fooled.

Let's share a piece of code:

$url = "http://api.monkeyapi.com"; $params = array( 'appkey' =>'appkey',//APPKEY you applied for 'url' =>'www.monkeyapi.com',//Websites to query ); $paramstring = http_build_query($params); $content = Curl($url, $paramstring); $result = json_decode($content, true); if($result) { var_dump($result); }else { //Request exception } /** * Request interface return content * @param string $url [Requested URL address] * @param string $params [Requested parameters] * @param int $ipost [POST or not] * @return string */ function Curl($url, $params = false, $ispost = 0) { $httpInfo = array(); $ch = curl_init(); curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60); curl_setopt($ch, CURLOPT_TIMEOUT, 60); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); if ($ispost) { curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $params); curl_setopt($ch, CURLOPT_URL, $url); }else { if ($params) { curl_setopt($ch, CURLOPT_URL, $url.'?'.$params); } else { curl_setopt($ch, CURLOPT_URL, $url); } } $response = curl_exec($ch); if ($response === FALSE) { //echo "cURL Error: " . curl_error($ch); return false; } $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); $httpInfo = array_merge($httpInfo, curl_getinfo($ch)); curl_close($ch); return $response; //For more information, please add Q3396103977 or V mkapi005 }

12 June 2020, 00:46 | Views: 2089

Add new comment

For adding a comment, please log in
or create account

0 comments