Apache2 GeoIP / mod_geoip2自定义错误页面

时间:2013-01-03 09:02:57

标签: apache geoip

每当在apache上被mod_geoip2阻止ip时,它都会显示“Forbidden /”错误。 geo ip blocking工作正常,但是当ip被阻止时是否有可能显示自定义错误页面或消息?

我看了一下ad maxminds文档,但没有提到。也许有人有想法?

1 个答案:

答案 0 :(得分:1)

以下是示例:

GeoIPEnable On
GeoIPDBFile /path/to/GeoIP.dat
RewriteEngine On
RewriteCond %{ENV:GEOIP_COUNTRY_CODE} !(US|GB|CA)$
RewriteRule ^(.*)$ /error_page.html [NC,L]

希望以上规则能回答你的问题