Questions tagged «exclude»

2
使用wget时如何排除某些目录?
我想从FTP下载目录,其中包含一些源代码。最初,我是这样做的: wget -r ftp://path/to/src 不幸的是,目录本身是SVN检出的结果,因此存在许多.svn目录,并且对其进行爬网将花费更长的时间。是否可以排除那些.svn目录?
12 wget  exclude 

1
Apache ProxyPass或ProxyPassMatch从代理中排除文件
我将VirtualHost设置为将所有请求代理到在端口9000上运行的另一台服务器。 我有的 : ProxyPass / http://localhost:9000/ ProxyPassReverse / http://localhost:9000/ 我尝试过的 ! ProxyPass /test.html http://localhost:9000/ ProxyPass /test.html ! http://localhost:9000/ ProxyPassMatch !^/(.*\.html)$ http://localhost:9000/$1 没有一个起作用... 我想从一个文件中排除一个文件或一组文件,该文档说了一些有关“!指令在您不希望反向代理子目录的情况下很有用。”,但是没有示例。对于那种情况。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.