2
如何限制在joomla網站的基於IP地址的網站?如何在joomla網站中限制基於網站的IP地址?
如何限制在joomla網站的基於IP地址的網站?如何在joomla網站中限制基於網站的IP地址?
可以使用的.htaccess
#require authentication of requests
AuthName "Restricted Area"
AuthUserFile /var/www/.htpasswd
AuthType basic
Require valid-user
#deny access to all, allow for selected ip's/domains
Order Deny,Allow
Deny from all
Allow from 123.123.123.123 googlebot.com google.com google-analytics.com
#if any of these rules are satisfied they may proceed
Satisfy Any
你需要添加一個密碼文件。
http://extensions.joomla.org/search?q=ip
有更多的擴展,這樣做。你可以在這裏找到它們中的一些!