Month: November 2023

DD在线安装系统命令

wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && bash InstallNET.sh -dd '直连' bash <(wget --no-check-certificate -qO- 'https://cdn.jsdelivr.net/gh/MoeClub/Note/InstallNET.sh') --mirror 'https://mirrors.ustc.edu.cn/debian' -dd '直链' 以上两个都可 注意的是: 1:--no-check-certificate 可以省略 在http或者https证书有效的情况下 2:--mirror 'https://mirrors.ustc.edu.cn/debian 在国外可以省略,添加是解决国内源无法连接或者过慢的问题 3:简短的命令例子: bash <(wget…

Continue Reading

WordPress访问/wp-json/ 返回404

#这行是为了防止打开后台、插件页等打不开的。 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){ rewrite (.*) /index.php; } rewrite /wp-admin$ $scheme://$host$uri/ permanent; #这行是为了防止打开后台、插件页等打不开的。 Wordpress访问/wp-json/ 返回404,无法查看详情页,无法发布POST,在nginx配置里面添加以上代码

Continue Reading