223 lines
7.1 KiB
Markdown
223 lines
7.1 KiB
Markdown
# 2026-04-18 首批4站 curl 复查命令清单
|
||
|
||
这份文档用于在清缓存前后,直接通过 `curl` 快速复查首批 4 个优先站。
|
||
|
||
适用场景:
|
||
|
||
1. 现场刚清完前端缓存
|
||
2. 需要快速对比普通访问与 `?__nocache=1`
|
||
3. 不想再手工拼 URL 和 header 检查命令
|
||
|
||
建议配合:
|
||
|
||
- [2026-04-18-首批4站清缓存后复查执行单.md](/www/wwwroot/diff-maccms/SEONexus/docs/gpt-template-seo/2026-04-18-首批4站清缓存后复查执行单.md)
|
||
- [2026-04-18-清缓存后复查记录单.md](/www/wwwroot/diff-maccms/SEONexus/docs/2026-04-18-清缓存后复查记录单.md)
|
||
|
||
## 1. 使用原则
|
||
|
||
先跑 header 命令,再跑源码抽取命令。
|
||
|
||
建议顺序:
|
||
|
||
1. 首页 header
|
||
2. 搜索页 header
|
||
3. 详情页 header
|
||
4. 播放页 header
|
||
5. 搜索 / 详情 / 播放 nocache header
|
||
6. 最后抽取 `title` / `h1` / canonical
|
||
|
||
## 2. 通用命令模板
|
||
|
||
### 只看响应头
|
||
|
||
```bash
|
||
curl -I -L -s 'https://example.com/path'
|
||
```
|
||
|
||
### 带 `__nocache=1` 看响应头
|
||
|
||
```bash
|
||
curl -I -L -s 'https://example.com/path?__nocache=1'
|
||
```
|
||
|
||
### 抓源码并提取标题 / canonical / h1
|
||
|
||
```bash
|
||
curl -L -s 'https://example.com/path' | rg -o '<title>.*?</title>|<link rel=\"canonical\".*?>|<h1[^>]*>.*?</h1>' -N
|
||
```
|
||
|
||
### 抓 nocache 源码并提取标题 / canonical / h1
|
||
|
||
```bash
|
||
curl -L -s 'https://example.com/path?__nocache=1' | rg -o '<title>.*?</title>|<link rel=\"canonical\".*?>|<h1[^>]*>.*?</h1>' -N
|
||
```
|
||
|
||
## 3. `jingxifa.com`
|
||
|
||
### 推荐复查 URL
|
||
|
||
- 首页:
|
||
- `https://www.jingxifa.com/`
|
||
- 搜索页:
|
||
- `https://www.jingxifa.com/get-index?keyword=京淅发影院`
|
||
- 详情页:
|
||
- `https://www.jingxifa.com/video-detail/cheng-shi-jian-ke-190614`
|
||
- 播放页:
|
||
- `https://www.jingxifa.com/video-bofang/hei-yi-nv-ren-de-xiang-shui-183894-default-1`
|
||
|
||
### header 复查
|
||
|
||
```bash
|
||
curl -I -L -s 'https://www.jingxifa.com/'
|
||
curl -I -L -s 'https://www.jingxifa.com/get-index?keyword=京淅发影院'
|
||
curl -I -L -s 'https://www.jingxifa.com/video-detail/cheng-shi-jian-ke-190614'
|
||
curl -I -L -s 'https://www.jingxifa.com/video-bofang/hei-yi-nv-ren-de-xiang-shui-183894-default-1'
|
||
```
|
||
|
||
### nocache header 复查
|
||
|
||
```bash
|
||
curl -I -L -s 'https://www.jingxifa.com/get-index?keyword=京淅发影院&__nocache=1'
|
||
curl -I -L -s 'https://www.jingxifa.com/video-detail/cheng-shi-jian-ke-190614?__nocache=1'
|
||
curl -I -L -s 'https://www.jingxifa.com/video-bofang/hei-yi-nv-ren-de-xiang-shui-183894-default-1?__nocache=1'
|
||
```
|
||
|
||
### 源码抽取
|
||
|
||
```bash
|
||
curl -L -s 'https://www.jingxifa.com/get-index?keyword=京淅发影院' | rg -o '<title>.*?</title>|<link rel=\"canonical\".*?>|<h1[^>]*>.*?</h1>' -N
|
||
curl -L -s 'https://www.jingxifa.com/video-detail/cheng-shi-jian-ke-190614' | rg -o '<title>.*?</title>|<link rel=\"canonical\".*?>|<h1[^>]*>.*?</h1>' -N
|
||
curl -L -s 'https://www.jingxifa.com/video-bofang/hei-yi-nv-ren-de-xiang-shui-183894-default-1' | rg -o '<title>.*?</title>|<link rel=\"canonical\".*?>|<h1[^>]*>.*?</h1>' -N
|
||
```
|
||
|
||
## 4. `lcdchq.com`
|
||
|
||
### 推荐复查 URL
|
||
|
||
- 首页:
|
||
- `https://www.lcdchq.com/`
|
||
- 搜索页:
|
||
- `https://www.lcdchq.com/get-index?keyword=欧美影院`
|
||
- 详情页:
|
||
- `https://www.lcdchq.com/movie/154180-yi-gua-ding-qing-yuan-ye-ya-tou-jin-cheng-bei-tuan-chong`
|
||
- 播放页:
|
||
- `请现场补一个当前真实播放页,若暂无已确认样本,可先复查详情页与首页`
|
||
|
||
### header 复查
|
||
|
||
```bash
|
||
curl -I -L -s 'https://www.lcdchq.com/'
|
||
curl -I -L -s 'https://www.lcdchq.com/get-index?keyword=欧美影院'
|
||
curl -I -L -s 'https://www.lcdchq.com/movie/154180-yi-gua-ding-qing-yuan-ye-ya-tou-jin-cheng-bei-tuan-chong'
|
||
```
|
||
|
||
### nocache header 复查
|
||
|
||
```bash
|
||
curl -I -L -s 'https://www.lcdchq.com/get-index?keyword=欧美影院&__nocache=1'
|
||
curl -I -L -s 'https://www.lcdchq.com/movie/154180-yi-gua-ding-qing-yuan-ye-ya-tou-jin-cheng-bei-tuan-chong?__nocache=1'
|
||
```
|
||
|
||
### 源码抽取
|
||
|
||
```bash
|
||
curl -L -s 'https://www.lcdchq.com/get-index?keyword=欧美影院' | rg -o '<title>.*?</title>|<link rel=\"canonical\".*?>|<h1[^>]*>.*?</h1>' -N
|
||
curl -L -s 'https://www.lcdchq.com/movie/154180-yi-gua-ding-qing-yuan-ye-ya-tou-jin-cheng-bei-tuan-chong' | rg -o '<title>.*?</title>|<link rel=\"canonical\".*?>|<h1[^>]*>.*?</h1>' -N
|
||
```
|
||
|
||
## 5. `cnzhenbang.com`
|
||
|
||
### 推荐复查 URL
|
||
|
||
- 首页:
|
||
- `https://www.cnzhenbang.com/`
|
||
- 搜索页:
|
||
- `https://www.cnzhenbang.com/query?keyword=菜鸟臻榜`
|
||
- 分类页:
|
||
- `https://www.cnzhenbang.com/category/dong-man`
|
||
- 详情页:
|
||
- `https://www.cnzhenbang.com/detail/wei-xian-de-fei-pang-210`
|
||
- 备用详情页:
|
||
- `https://www.cnzhenbang.com/detail/mo-li-mei-213`
|
||
|
||
### header 复查
|
||
|
||
```bash
|
||
curl -I -L -s 'https://www.cnzhenbang.com/'
|
||
curl -I -L -s 'https://www.cnzhenbang.com/query?keyword=菜鸟臻榜'
|
||
curl -I -L -s 'https://www.cnzhenbang.com/category/dong-man'
|
||
curl -I -L -s 'https://www.cnzhenbang.com/detail/wei-xian-de-fei-pang-210'
|
||
```
|
||
|
||
### nocache header 复查
|
||
|
||
```bash
|
||
curl -I -L -s 'https://www.cnzhenbang.com/query?keyword=菜鸟臻榜&__nocache=1'
|
||
curl -I -L -s 'https://www.cnzhenbang.com/detail/wei-xian-de-fei-pang-210?__nocache=1'
|
||
curl -I -L -s 'https://www.cnzhenbang.com/detail/mo-li-mei-213?__nocache=1'
|
||
```
|
||
|
||
### 源码抽取
|
||
|
||
```bash
|
||
curl -L -s 'https://www.cnzhenbang.com/query?keyword=菜鸟臻榜' | rg -o '<title>.*?</title>|<link rel=\"canonical\".*?>|<h1[^>]*>.*?</h1>' -N
|
||
curl -L -s 'https://www.cnzhenbang.com/detail/wei-xian-de-fei-pang-210' | rg -o '<title>.*?</title>|<link rel=\"canonical\".*?>|<h1[^>]*>.*?</h1>' -N
|
||
curl -L -s 'https://www.cnzhenbang.com/detail/mo-li-mei-213' | rg -o '<title>.*?</title>|<link rel=\"canonical\".*?>|<h1[^>]*>.*?</h1>' -N
|
||
```
|
||
|
||
## 6. `oronorent.com`
|
||
|
||
### 推荐复查 URL
|
||
|
||
- 首页:
|
||
- `https://www.oronorent.com/`
|
||
- 搜索页:
|
||
- `https://www.oronorent.com/get-index?keyword=奥诺影视`
|
||
- 详情页:
|
||
- `https://www.oronorent.com/shipin/154173-yi-gua-ding-qian-kun`
|
||
- robots:
|
||
- `https://www.oronorent.com/robots.txt`
|
||
|
||
### header 复查
|
||
|
||
```bash
|
||
curl -I -L -s 'https://www.oronorent.com/'
|
||
curl -I -L -s 'https://www.oronorent.com/get-index?keyword=奥诺影视'
|
||
curl -I -L -s 'https://www.oronorent.com/shipin/154173-yi-gua-ding-qian-kun'
|
||
curl -I -L -s 'https://www.oronorent.com/robots.txt'
|
||
```
|
||
|
||
### nocache header 复查
|
||
|
||
```bash
|
||
curl -I -L -s 'https://www.oronorent.com/get-index?keyword=奥诺影视&__nocache=1'
|
||
curl -I -L -s 'https://www.oronorent.com/shipin/154173-yi-gua-ding-qian-kun?__nocache=1'
|
||
```
|
||
|
||
### 源码抽取
|
||
|
||
```bash
|
||
curl -L -s 'https://www.oronorent.com/get-index?keyword=奥诺影视' | rg -o '<title>.*?</title>|<link rel=\"canonical\".*?>|<h1[^>]*>.*?</h1>' -N
|
||
curl -L -s 'https://www.oronorent.com/shipin/154173-yi-gua-ding-qian-kun' | rg -o '<title>.*?</title>|<link rel=\"canonical\".*?>|<h1[^>]*>.*?</h1>' -N
|
||
```
|
||
|
||
## 7. 建议现场记录的最小结果
|
||
|
||
每个域名跑完后,至少记录下面这些:
|
||
|
||
1. 普通访问首页状态码
|
||
2. 普通访问搜索页 `h1`
|
||
3. 普通访问详情页 `h1`
|
||
4. 普通访问播放页 `h1`
|
||
5. `?__nocache=1` 对照是否一致
|
||
6. 当前是否还能判定为缓存问题
|
||
|
||
## 8. 当前建议
|
||
|
||
现场执行时,不要先跑测试探针:
|
||
|
||
- `/get-index?wd=test`
|
||
- `/get/index?wd=test`
|
||
|
||
优先跑已经确认过的真实入口、真实详情页、真实播放页。
|