摘要:
首先到相当的目录下面,按下面方式查找 find . -type f -size +800M -print0 | xargs -0 ls -lah或者从根目录(/)开始查找find / -type f -size +800M -print0 | xargs -0 ls -lah 阅读全文
摘要:
第一步: 先下载 rewrite_x64_zh-cn.msi ,并安装 (*这个是2.0版本,千万不要安装2.1版本,否则导致网站进程池全部关闭) https://www.microsoft.com/zh-CN/download/confirmation.aspx?id=7435 第二步: 安装好后 阅读全文
摘要:
另一种方式,不需传递threading.Thread,直接操作属性: 根据网络搜索整合: 参考:https://blog.csdn.net/houyanhua1/article/details/78233519 阅读全文
摘要:
根据原文链接:https://segmentfault.com/a/1190000017378464,整理 第一步:先导入项目根的urls.py路径 第二步:引入 URLPattern,URLResolver 第三步:使用递归的方式,把获取所有路径,例子如下: 阅读全文
摘要:
环境:centos 7.4 第一:安装redis 第二:django设置连接redis,并设置session使用redis存储 第三:开始在views中测试session 阅读全文
摘要:
nginx rewrite比较齐全的教程 http://www.bubuko.com/infodetail-1810501.html 阅读全文
摘要:
本文根据网络搜索整理,不是原创 nginx全局变量 nginx中rewrite 一些简单重写 禁止.mp3.sh访问location ~ .*\.(mp3|sh)${return 403;} 目录/hometest/ 重定向到 /www/temp/rewrite ^/([0-9a-z]+)test/ 阅读全文
摘要:
第一:url中反向解析教程网址 https://docs.djangoproject.com/zh-hans/2.2/ref/templates/builtins/#url 阅读全文