Hi
I got a Apache web server running on my Cube NS3.3, and I need to disable GET/POST methods, no matter what I try this methods still active
canm please, anyone provide me some help
Thanks
I don't know if blocking the actual methods is possible, but a quick way to block GET and POST variables with mod_rewrite is to add the following code to your .htaccess file:
RewriteEngine On
RewriteBase /
RewriteRule (.*) $1?
Although that might not be at all what you are looking for.
You can't do anything without GET, and you can't do much without POST.