Artykuły na każdy temat
[Apache] Banowanie przy pomocy .htaccess
order allow, deny
deny from 127.0.0.1
allow from all
order allow, deny
deny from 192.168.0.2
deny from 192.168.0.3
deny from 192.168.0.4
allow from all
order allow, deny
deny from 192.168.0
allow from all
Możemy także zastosować .* jeżeli jest nam wygodniej. Powyższy zapis zablokuje zakres od 192.168.0.0 do 192.168.0.255.
order allow, deny
deny from neostrada.pl
allow from all
Analogicznie możemy skasować Netie i innych operatorów.
Komentarze
order allow, deny
deny from 86.26.46.64
allow from all
RewriteEngine On
RewriteRule ^news/([^-]+)$ index.php?p=news&id=$1 [L]
RewriteRule ^page/([^-]+)$ index.php?p=$1 [L]
ErrorDocument 404 http://v2.creepshaft.xaa.pl/404.php
ErrorDocument 403 http://v2.creepshaft.xaa.pl/403.php
Dodaj komentarz
Thelleo
Bardzo ci dziękuję za pomoc