Htaccess Rule to Allow PUT on cPanel
Allow PUT, GET, POST, DELETE, HEAD, OPTIONS on cPanel via htaccess
I was struggling to setup htaccess to allow PUT Request on cPanel and I found this article on cPanel that helped me allow the behaviour on the server.
<Limit GET POST PUT DELETE HEAD OPTIONS>
Order allow,deny
Allow from all
</Limit>