在路上的头像-THE FREE SKY
这家伙很懒,什么都没有写...
Chevereto Nginx 伪静态规则-THE FREE SKY

Chevereto Nginx 伪静态规则

location / { if (-f $request_filename/index.html){ rewrite (.*) $1/index.html break; } if (-f $request_filename/index.php){ rewrite (.*) $1/index.php; } if (!-f $request_filename){...
3月4日 02:37
06287
wordpress禁止生成缩略图-THE FREE SKY

wordpress禁止生成缩略图

把以下代码加入你的主题 functions.php 文件   // 禁用自动生成的图片尺寸 function shapeSpace_disable_image_sizes($sizes) { unset($sizes['thumbnail']); // disable thumbnail size...
让WordPress后台媒体库支持WebP格式图片上传和显示-THE FREE SKY

让WordPress后台媒体库支持WebP格式图片上传和显示

将以下代码添加到当前主题的 functions.php //让 WordPress 支持 WebP 格式图片上传 function bzg_filter_mime_types( $array ) { $array['webp'] = 'image/webp'; return $array; } add_filter...
Nginx环境重写Rank Math Sitemaps-THE FREE SKY

Nginx环境重写Rank Math Sitemaps

# START Nginx Rewrites for Rank Math Sitemaps rewrite ^/sitemap_index.xml$ /index.php?sitemap=1 last; rewrite ^/([^/]+?)-sitemap([0-9]+)?.xml$ /index.php?sitemap=$1&sitemap_n=$...
DomainMegaBot批量扫米工具-THE FREE SKY

DomainMegaBot批量扫米工具

项目地址 https://github.com/Har-Kuun/DomainMegaBot 使用方法 wget https://github.com/Har-Kuun/DomainMegaBot/archive/master.zip #下载 unzip master.zip #解压 cd DomainMegaBot-master #...