I want to restrict all POST request that comes from other server via .htacces
if they try to post any from other server thing they will get redirected to home page or 404 etc.
I tried this
<Limit POST>
order deny,allow
deny from all
allow from 127.0.0.1
</Limit>
Note:- GET request are allowed from all servers. Only to block POST requests.