我的網站有一個很大的htaccess文件。我試圖阻止的IP之一是27.153.228.56爲什麼這個htaccess代碼不能阻塞指定的IP?
儘管我的htaccess,我仍然看到我的最新訪客日誌中顯示27.153.228.56。
我的htaccess允許這個IP訪問該網站有什麼問題嗎?
還有更多的IP阻止,不過這是一個簡化版本:
# Protect from spam bots
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} .wp-comments-post\.php*
RewriteCond %{HTTP_REFERER} !.garagehangover.com* [OR]
RewriteCond %{HTTP_USER_AGENT} ^$
RewriteRule (.*) ^http://%{REMOTE_ADDR}/$ [R=301,L]
</IfModule>
# Begin IP blocking #
Order Allow,Deny
deny from 27.153.228.56
# End IP blocking #
#Begin Bad Bot Blocking
BrowserMatchNoCase yandex bad_bot
Deny from env=bad_bot
# End Bad Bot Blocking
Allow from all