DomainMegaBot批量扫米工具
项目地址 https://github.com/Har-Kuun/DomainMegaBot 使用方法 wget https://github.com/Har-Kuun/DomainMegaBot/archive/master.zip #下载 unzip master.zip #解压 cd DomainMegaBot-master #...
宝塔环境下的BeDrive Nginx规则
location / { try_files $uri $uri/ /index.php?$query_string; } location = /favicon.ico { access_log off; log_not_found off; } location = /robots.txt { access_log off; log_not_found ...
让WordPress后台媒体库支持WebP格式图片上传和显示
将以下代码添加到当前主题的 functions.php //让 WordPress 支持 WebP 格式图片上传 function bzg_filter_mime_types( $array ) { $array['webp'] = 'image/webp'; return $array; } add_filter...
XiunoBBS静态化规则
XiunoBBS 只需要一条规则: 将 *.htm* 转发到 index.php?*.htm* 即可。 Xiuno BBS 4.0 需要编辑 conf/conf.php 编辑 'url_rewrite_on'=>1, 清空 tmp 目录 Nginx: 打开 nginx 配置文件 /usr/...
WP限制评论字数的方法
在主题functions.php文件适当位置加入以下代码: /* 设定评论字数限制开始 */ function set_comments_length($commentdata) { $minCommentlength = 5; //最少字数限制 $maxCommentlength = 1000...
CentOS7添加或删除用户和用户组
需在root用户下使用 1、新建用户 adduser testuser //新建testuser 用户 passwd testuser //给testuser 用户设置密码 2、建工作组 groupadd testgroup //新建test工作组 3、...
aaPanel Linux 腳本參考
安裝 Centos 安裝 yum install -y wget && wget -O install.sh http://www.aapanel.com/script/install_6.0_en.sh && bash install.sh aapanel Ubuntu/深度安裝 wget -O instal...