make so only certain ip 27s can accesss html file

Solutions on MaxInterview for make so only certain ip 27s can accesss html file by the best coders in the world

showing results for - "make so only certain ip 27s can accesss html file"
Mira
04 Apr 2020
1# ALLOW ONLY MULTIPLE IPs
2<Limit GET POST PUT>
3 Order Deny,Allow
4 Deny from all
5 Allow from 123.456.789
6 Allow from 456.789.123
7 Allow from 789.123.456
8</Limit>
9ErrorDocument 403 path/custom-message.html
10<Files path/custom-message.html>
11 Order Allow,Deny
12 Allow from all
13</Files>