366tool domain name for you to answer how to avoid being intercepted micro-channel, micro-letter domain name anti-seal what issues need attention?

Share in the micro domain name promotion intercepted letter is a common thing, most recently in the major forum blog there are a lot of friends gave me a message asking me if I had the solution, which in fact do not ask, and certainly there is a solution. To give a simple example, we recently pushed a number of pages in the micro-channel advertising links, more than a month is not a link is blocked. In fact, this can prove to be a good way to avoid micro-domain intercepted letter, so close-up article for everyone to talk about how we do it. Prior to this we have to know what causes the micro domain intercepted letter, and then one by one to solve.

Why your domain name will be blocked micro letter?

1, there will be micro-channel detection system, as long as detect your domain name with induction share content ×××, walking a fine line (×××, false information, etc.), it will automatically block.
2, peers or users to report too many times, trigger micro-channel manual inspection team, manually shut your domain name.
3, excessive share forwarding, trigger the system automatically detects when changes are detected violations, it will block.
4, usually as long as the micro letter backstage or artificial have detected body infringement, infringing content, violent content, promotion, marketing information, advertising class content, false information content, harassment class content, misleading type of content, it will be your domain into the black list, user access will prompt "access to the web page has stopped."

Why the contents of the same nature, to share the promotion will not be blocked, and we were quickly intercepted it?

We have some questions, why their content with others is the same nature, even inside the sensitive words are the same, others can indeed be no pressure in the micro-channel marketing, and your own domain name push, a little amount was blocked . Such cases are usually because someone directly with the naked domain to promote, while others are added to the domain name protection.

That this happens to be how to do it?

Way is to be sure to use technical means to protect the domain name plus anti-seal process, to effectively protect your domain name through the anti-seal. At this stage the market has two anti-seal program:
1, the detection domain Domain Name + micro switch (reverse jump)
2, multi-level matrix encryption jump two ways
relatively speaking, this latter encryption multilevel matrix jump better and more stable.
We recently with 366TooL domain name anti-seal anti-seal technology implementation. Let me share a section of our break 366TooL the code for your reference:

$url = "http://www.366tool.com";
$params = array(
'Appkey' => 'appkey', APPKEY // your application
'Url' => 'www.366tool.com', // need to check the website
);

$paramstring = http_build_query($params);
$content = go51wCurl($url, $paramstring);
$result = json_decode($content, true);
if($result) {
    var_dump ($ result);
}else {
    // request an exception
}


/**
    * Interface returns the contents of the request
    * @Param string $ url [URL address of the request]
    * @Param string $ params [requested parameter]
    * @Param int $ ipost [whether to adopt the POST form]
    * @return    string
*/
function go51wCurl($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;
}


Guess you like

Origin blog.51cto.com/14361238/2401106