2011-01-04 2 views

Répondre

0

vous pouvez utiliser mod_rewrite et ajoutez ce code:

RewriteEngine On 
RewriteCond %{REQUEST_URI} ^/service.php # if service.php requested 
RewriteCond %{REQUEST_METHOD} !^POST$ [NC] # and if its not post 
RewriteRule .* - [F] # then block access (403 forbidden) 
Questions connexes