first of all i need to clarify that i am new to apache2 server configuration and for some needs i want to transfer some files using curl to web directory:

following is the command i m running to transfer file to my web directory:

curl -T "q" http://localhost/website

where "q" is the name of the file and the response i get is

    <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>301 Moved Permanently</title>
</head><body>
<h1>Moved Permanently</h1>
<p>The document has moved <a href="http://localhost/website/">here</a>.</p>
<hr>
<address>Apache/2.2.16 (Ubuntu) Server at localhost Port 80</address>
</body></html>

my configuration for httpd.conf is like

    <Directory /var/www/website>
   Options none
   AllowOverride none
   Order deny,allow
   Allow from all
   <Limit PUT POST GET>
        Order deny,allow
        Allow from all
    </Limit>
</Directory>

where i m allowing PUT option to be used

now the problem is that file "q" does not appear in /var/www/website directory even though after getting moved permanenty message. acording to my understanding what i came to know after reading "man curl" is that -T allows you to transfer files directly to server unlike some scripts what we use in case of forms,correct me if i am wrong.

please share some inputs regarding this which will be more than helpful for me.

Thanks;

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.