在路上的头像-THE FREE SKY
这家伙很懒,什么都没有写...
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 #...
Helpdesk Apache / Nginx静态化方法-THE FREE SKY

Helpdesk Apache / Nginx静态化方法

Apache RewriteEngine ON RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php [L] ErrorDocument 404 /404/   Nginx location / { index ...
宝塔 PHP遇到 ERROR: An another FPM instance seems to already listen on /tmp/php-cgi-73.sock-THE FREE SKY

宝塔 PHP遇到 ERROR: An another FPM instance seems to already listen on /tmp/php-cgi-73.sock

解决方法: php重启时报错 错误提示: ERROR: An another FPM instance seems to already listen on /tmp/php-cgi-73.sock 原因是另一个FPM实例似乎已经在/tmp/php-cgi-73.sock上进行侦听 解决...