Forum Moderators: phranque

Message Too Old, No Replies

What does this Htaccess code mean/do?

Limit get post and limit put delete

         

neveremail

1:31 am on Nov 11, 2005 (gmt 0)

10+ Year Member



<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>

jdMorgan

8:35 am on Nov 11, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



It allows clients from all IP addresses use HEAD, GET, and POST methods in requests to your server.

It prevents allows clients from all IP addresses from using the PUT or DELETE methods.

It does nothing for various other HTTP methods, such as SEARCH, OPTIONS, PROPFIND, etc.

Jim

neveremail

5:12 pm on Nov 11, 2005 (gmt 0)

10+ Year Member



Sorry for been a bit stupid but I'm not really sure what this means?

jdMorgan

7:32 pm on Nov 11, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Here is an authoritative document about HTTP: [w3.org...]

Jim