假设存在一个具有以下目录(子域)的站点
index.php
|-sub1
|-index.php
|-sub1sub1
|-index.php
|-other.php
|-sub1sub1sub1
|-sub2
|-index.php
|- ….
|-sub3
|- ...
我的问题是:
- 如何在本地正确显示 sub1 子域 (http://domain/sub1) 的站点?
- 我怎样才能得到 sub1 的子文件和目录(
sub1sub1
例如sub1sub1sub1
)?
我尝试了以下选项(用于 wget),但它还检索了 等中的文件和sub2
目录sub3
。
wget -E -H -k -K -r http://domain/sub1/index.php
也许我应该在 bash 中写几行?