htaccess仅适用于某些页面

时间:2011-03-07 19:42:18

标签: apache .htaccess

您好 我使用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吗?

感谢

1 个答案:

答案 0 :(得分:0)

Solved here

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>