如何在 Windows 上使用 wget 来访问 URL 而无需下载任何页面
How to use wget on Windows just to access an URL WITHOUT download any page
如何在 Windows 上使用 wget 来访问 URL 而无需下载任何页面?我只想发送一个 HTTP REQUEST 。 (它会在 cakephp 上显示一个函数)
我想你想按如下方式发出 wget:
wget http://example.com/controller/action/param -O NUL
这对 GET 请求有效。
如何在 Windows 上使用 wget 来访问 URL 而无需下载任何页面?我只想发送一个 HTTP REQUEST 。 (它会在 cakephp 上显示一个函数)
我想你想按如下方式发出 wget:
wget http://example.com/controller/action/param -O NUL
这对 GET 请求有效。