LiteSpeed/2.2.6 Standard
I'm trying to limit access to a directory based on a domain name instead of using IP addresses.
I'm trying to access the page from 66.130.240.125 (125.240.130.66.in-addr.arpa name = modemcable125.240-130-66.mc.videotron.ca.)
This doesn't work:
But this does:
Any reason why using a domain name would not work in the .htaccess ?
I'm in fact trying to allow googlebot.com access to specific files (for Google Calendar).
Thanks.
I'm trying to limit access to a directory based on a domain name instead of using IP addresses.
I'm trying to access the page from 66.130.240.125 (125.240.130.66.in-addr.arpa name = modemcable125.240-130-66.mc.videotron.ca.)
This doesn't work:
Code:
Deny from all
Allow from videotron.ca
Satisfy Any
Code:
Deny from all
Allow from 66.130.240.125
Satisfy Any
I'm in fact trying to allow googlebot.com access to specific files (for Google Calendar).
Thanks.