您好 我使用apache geo-ip,我想只允许来自其他国家/地区的用户使用以下页面:
[http:]//[www.]my_domain/forum/
[http:]//[www.]my_domain/forum/viewforum.php?f=
[http:]//[www.]my_domain/forum/viewtopic.php?f=
有可能用htaccess吗?
感谢
答案 0 :(得分:0)
SetEnvIf GEOIP_COUNTRY_CODE RO AllowCountry
<FilesMatch "^ucp.php|posting.php|memberlist.php">
Order Deny,Allow
Deny from all
Allow from env=AllowCountry
Allow from localhost
ErrorDocument 403 /errors/500.php
</FilesMatch>