Answers for "make so only certain ip's can accesss html file"

0

make so only certain ip's can accesss html file

# ALLOW ONLY MULTIPLE IPs
<Limit GET POST PUT>
 Order Deny,Allow
 Deny from all
 Allow from 123.456.789
 Allow from 456.789.123
 Allow from 789.123.456
</Limit>
ErrorDocument 403 path/custom-message.html
<Files path/custom-message.html>
 Order Allow,Deny
 Allow from all
</Files>
Posted by: Guest on July-08-2020

Code answers related to "make so only certain ip's can accesss html file"

Browse Popular Code Answers by Language