Ok, I know this is not particularly a PHP problem but perhaps someone will know...
Let's say I have something like this in my .htaccess:
Order Deny,Allow
allow from 123.123.123.123
allow from 124.125.126.127
Deny from all
Is there a way I could avoid repeating the "allow from" (or "deny from") part for each of the IPs? Or is there a way I could supply the IPs from an external file?
Thanks!
Tomas