Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to solve the problem that the web web link is stopped by Wechat?

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces the relevant knowledge of "how to solve the problem that web web links are stopped by Wechat". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

I. the factors in which the domain name was intercepted by Wechat

1. Report. Including user reports, peer malicious reports, submitted to the Wechat team for testing.

2. The forwarding volume is too large. Forwarding is also a necessary means to provide product exposure and click rate, but a large number of retweets will also trigger the automatic detection system of the system and be blocked.

3. Content. Wechat or manual detection of false content, infringement, induced sharing, marketing advertising, edge ball, etc., will cause the domain name to be blacklisted.

Two. the solution can be started from two aspects, one is hard, and the other is soft.

Hard aspect: that is, the server is what many people are doing at present, and many friends who do anti-blocking have the same experience, such as resolving their domain names to the servers of the anti-blocking platform. the weird thing is that the probability of being blocked has indeed been reduced a lot. There are many anti-sealing platforms operated in this form, the first thing to do is the micro-shield, which a group of people did, but now micro-shield is no longer done. This technique is called reverse proxy, but it doesn't last. The main thing to do is to start with the soft side. Here are some details on this aspect:

1. Anti-reporting

Anyway, reporting is a very hurtful thing, because peer competition is very normal, this area to prevent reporting has even been developed Wechat report button through the underlying technology to crack so that the other party can not report. But I heard that the effect is not good, but also inexplicably blocked. So the most simple and rude way to avoid reporting is to jump, so now the prevention of reporting is in the form of encryption + jump, so the probability of being reported is almost very small.

2. Testing tools

Domain name detection tools that do Wechat testing usually provide some anti-blocking, but the effect of anti-blocking is actually very simple. The process is to check whether it is blocked by the detection tool, and if so, to find an unblocked access. So the technology they adopt is detection tool + reverse proxy technology, which is also the mainstream technology in the market at present.

3, the use of short URL intelligence (manual + system) rotational promotion, especially those large sites of short URLs, such as .url and .cn and 10086, so that it is not so easy to be targeted by Wechat, so that you can avoid certain risks, and short URLs are more helpful to let customers remember that they can also prevent tampering.

4. Intelligently change the RUL structure and make the RUL tend to normal link as far as possible, so that the robot generally can not recognize the problem.

5. Domain name switching access threshold processing, when the number of clicks of one domain name reaches a certain value, it is automatically redirected to another domain name for access, so as to avoid being noticed by Wechat.

6, intelligently change the page code structure, and encrypt the page code, which has the advantage of avoiding being included in the Wechat blacklist, which may be a bit difficult to do.

Share the code below for everyone's reference, if you have any ideas, you can discuss the latest anti-sealing knowledge with me.

$url = "http://api.monkeyapi.com";$params = array ('appkey' = >' appkey',// the website you applied for APPKEY'url' = > 'www.monkeyapi.com',// needs to query); $paramstring = http_build_query ($params); $content = Curl ($url, $paramstring); $result = json_decode ($content, true); if ($result) {var_dump ($result) } else {/ / request exception} / * the content returned by the request API * @ param string $url [requested URL address] * @ param string $params [requested parameters] * @ param int $ipost [in POST form] * @ 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;} "what to do if the web web link is stopped by Wechat". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report