I am trying to implement a REST protocol and have realized in trying to debug that my webserver is disallowing the PUT request.
I have tested and confirmed this further by running: curl -X PUT http://www.mywebserver.com/testpage
which for my web server gives back a 403 - Forbidden error
The same happens for DELETE, where as for POST and GET everything is fine.
I am wondering if this is a common issue that those who use REST encounter and what the work-around might be?
Could I make a simple change to an .htaccess file? Or do I need to modify the protocol to set a hidden variable "_method" in the POST query string?
Thank you for any help with this.