Quantcast
Channel: 揮発性のメモ2
Viewing all articles
Browse latest Browse all 110

wgetでPUTする

$
0
0

apacheの設定でこうすると、PUTメソッドはどこのディレクトリだろうとなんでもかんでも /test/put.phpに飛んでくる。

<Directory />
    Script PUT /test/put.php
</Directory>

※このとき、URL書き換えとかしてるわけでは無いので リクエスURIは もとのまま飛んでくる

wgetでテストする

wget --method=PUT --body-file=hoge.jpg http://192.168.1.78/piyo/test.jpg

--method=PUT でPUTメソッドになる。
--body-file= で送りつけたいファイルが指定できる。



Viewing all articles
Browse latest Browse all 110

Trending Articles