guitou222 Posted April 18, 2010 Share Posted April 18, 2010 Bonsoir,Comment faire pour bloquer l'acces à mon site prestashop de certaines adresses IP.Merci par avance.Guillaume Link to comment Share on other sites More sharing options...
Fluorite Posted April 18, 2010 Share Posted April 18, 2010 BonsoirTu peux le faire comme ceci order allow,deny deny from xxx.xx.xxx.x Ou faire ça aussi qui redirige sur le site que tu auras choisi # On active le rewriting RewriteEngine On RewriteCond %{REMOTE_ADDR} ^xxx.xx.xx.xxx$ RewriteRule ^(.*)$ http://www.tropcurieux.com [L] xxx.xx.xx.x A Remplacer par l'ip{Edit }A savoir que si il à une Ip dynamique c'est mort, a moins de bannir la plage d'adresse.Ip Dynamique = (Qui change a chaque connexion sur le net)Yannick Link to comment Share on other sites More sharing options...
guitou222 Posted April 18, 2010 Author Share Posted April 18, 2010 Merci voici une copie de mon .htacess :SetEnv PHP_VER 5SetEnv REGISTER_GLOBALS 0# URL rewriting module activationRewriteEngine on# Catch 404 errorsErrorDocument 404 /404.php# Bloquage d'ipOrder Allow,DenyAllow from allDeny from 83.113.5.215Deny from 81.251.116.238Deny from 83.205.196.124Deny from 83.113.136.78Deny from 83.197.190.152Deny from 81.251.119.28Deny from 83.113.138.48Deny from 83.113.136.71Deny from 83.197.189.101Deny from 81.251.245.155Deny from 92.153.40.158Deny from 83.113.4.180Deny from 83.113.0.158Ais je bon ?Le probleme c'est que j'ai l'impression que mon concurrent malveillant utilise une adresse IP Dynamique... quelle serait ma solution si cela était le cas ?Merci Link to comment Share on other sites More sharing options...
Fluorite Posted April 18, 2010 Share Posted April 18, 2010 Tien test RewriteCond %{REMOTE_ADDR} ^81\.[0-9]+\.[0-9]+\.[0-9]+ [OR] RewriteCond %{REMOTE_ADDR} ^83\.[0-9]+\.[0-9]+\.[0-9]+ [OR] RewriteCond %{REMOTE_ADDR} ^92\.[0-9]+\.[0-9]+\.[0-9]+ RewriteRule .* - [F] Mais attention tu bloque beaucoup d'autres internautes.Yannick Link to comment Share on other sites More sharing options...
Fluorite Posted April 18, 2010 Share Posted April 18, 2010 Fait le calcul %-P Link to comment Share on other sites More sharing options...
guitou222 Posted April 18, 2010 Author Share Posted April 18, 2010 Oui j'y avais pensé, mais cela me fait prendre bcp trop de risques... Une adresse IP dynamique se situe t'elle tjs aux meme endroit géographiquement parlant ?Merci Link to comment Share on other sites More sharing options...
Fluorite Posted April 18, 2010 Share Posted April 18, 2010 Logiquement oui Link to comment Share on other sites More sharing options...
jeckyl Posted April 18, 2010 Share Posted April 18, 2010 Salut,un très bon site pour avoir les adresses ip des pays si tu souhaites bloquer certains pays.http://ipinfodb.com/ip_country_block.php Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now