Saturday, August 16, 2014

Allowing PUT requests for CGI scripts in Apache

Create an .htaccess file in your top-level CGI directory containing

<Limit GET PUT POST OPTIONS>
    Require all granted
</Limit>

You can also add DELETE if you want that too.

No comments:

Post a Comment