zoukankan      html  css  js  c++  java
  • cdn节点自定义防CC代码在哪里抄

    1. 登陆节点的3311后台

    1. http redirect(普通)

    HTTP/1.1 302 FOUND
    Connection: keep-alive
    Location: {{url}}

    <html><body><a href="{{url}}">continue</a></body></html>

    2. html redirect

    HTTP/1.1 200 OK
    Content-Type: text/html; charset=utf-8
    Connection: keep-alive
    Cache-Control: no-cache,no-store

    <html><head><meta http-equiv="refresh" content="0;url={{url}}"></head><body><a href="{{url}}">continue</a></body></html>

    3. js plain

    HTTP/1.1 200 OK
    Content-Type: text/html; charset=utf-8
    Connection: keep-alive
    Cache-Control: no-cache,no-store

    <html><body><script language="javascript">window.location="{{url}}";</script><a href="{{url}}">continue</a></body></html>

    4. js concat

    HTTP/1.1 200 OK
    Content-Type: text/html; charset=utf-8
    Connection: keep-alive
    Cache-Control: no-cache,no-store

    <html><body><script language="javascript">window.location="{{murl}}";</script></body></html>

    5. js revert(复杂)

    HTTP/1.1 200 OK
    Content-Type: text/html; charset=utf-8
    Connection: keep-alive
    Cache-Control: no-cache,no-store

    <html><body><script language="javascript">{{revert:url}};window.location=url;</script></body></html>

    6. html manual

    HTTP/1.1 200 OK
    Content-Type: text/html; charset=utf-8
    Connection: keep-alive
    Cache-Control: no-cache,no-store

    <html><body><a href="{{url}}">continue</a></body></html>

    7. deny

    HTTP/1.1 200 OK
    Content-Type: text/html; charset=utf-8
    Connection: keep-alive
    Cache-Control: no-cache,no-store

    <html><body>try again later</body></html>

  • 相关阅读:
    SQL 视图 局部变量 全局变量 条件语句 事务 触发器
    asp.net中的cookie
    Ajax 学习笔记
    接口与抽象类
    log4net日志组件
    StringBulider简单用法
    Web.Config文件详解
    性能优化之无阻塞加载脚步方法比较
    vue双向数据绑定原理探究(附demo)
    让你的JS更优雅的小技巧
  • 原文地址:https://www.cnblogs.com/kangleweb/p/8744961.html
Copyright © 2011-2022 走看看