在我的.htacces中我试图阻止所有ip,除了我的ip
像这样RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
order deny,allow
deny from all
allow from <myip>
这个成功阻止所有ip除了我的ip在托管idhost *** 但当我尝试上传我的项目在其他主机indo *** 它不会阻止任何东西 我怎么能阻止所有的IP,除了我的ip喜欢托管idhost ***在托管indo ***?