进入宝塔的主机管理面板-> 设置-> 伪静态写入如下配置即可 # wordpress location / { try_files $uri $uri/ /index.php?$args; } 以下配置不写也可 # wordpress location = /wp-admin { rewrite ^ /wp-admin/ permanent; } 参考: http://www.nginx.cn/300.html
Month: October 2019
Google Clould Storage
前置: 存在Google Clould 账号和 Google Clould项目 1. 创建应用程序 2. 配置IAM权限 3. 创建bucket 4. 上传文件测试 5. 公开文件 添加 allUsers权限 创建项目 其他 Bucket is requester pays bucket but no user project provided 把Bucket 的 Requester Pays 改为false即可 Insufficient Permission
CURL 用法
curl http://www.geeksforgeeks.org Post Json数据 curl -H “Content-Type:application/json” -H “Data_Type:msg” -X POST –data ‘{“text”: “Hello world”}’ http://127.0.0.1:8000/tts 下载,显示进度 curl -o hello.zip ftp://speedtest.tele2.net/1MB.zip 参考: https://www.geeksforgeeks.org/curl-command-in-linux-with-examples/ https://www.cnblogs.com/hujiapeng/p/8470099.html