################################################################ # # Blocage d'une adresse IP avec le fichier .htaccess # # Origine : /scripts16-Snipet.html ############################################################# # Première solution Order Allow,Deny Allow from all Deny from 123.456.789.123 # Deuxième solution RewriteEngine On RewriteCond %{REMOTE_ADDR} ^123.456.789.123$ RewriteRule .* - [F,L] |