我已安装geoip,一切似乎都很好,但实际上并没有工作。
有什么想法吗?
我已尝试从cpanel /命令行/ cpanel等安装它 我将提供任何日志/文件。
模块目录
ls /etc/httpd/modules/
./ ../ httpd.exp libphp5.so* mod_bwlimited.so* mod_disable_suexec.so* mod_geoip.so* mod_security2.so mod_suphp.so* mod_zeus.so*
httpd.conf文件
<VirtualHost IP:80>
ServerName hostname
GeoIPEnable On
.htaccess文件
cat .htaccess
GeoIPEnable On
GeoIPDBFile /usr/shared/GeoIP/GeoIP.dat MemoryCache
SetEnvIf GEOIP_COUNTRY_CODE RO BlockCountry
# Canada
RewriteEngine on
RewriteCond %{ENV:GEOIP_COUNTRY_CODE} ^CA$
RewriteRule ^result.png http://www.google.com$1 [L]
我在服务器上添加了php文件:
<?php
$country = $_SERVER["GEOIP_COUNTRY_NAME"];
echo "<br />My Country : $country<br />";
输出结果为:
My Country :
它不会返回任何东西。
由于