I'm blocking a certain country via htaccess using the code specified below, however, I want to modify this, so that it is only valid for the index.html file. I want the users coming from these ip's not to be able to reach index.html but to be able to reach the other pages. The current code blocks them from accessing anything on the page. How should I modify the code in order to achieve this? Here's the code <Limit GET HEAD POST> order allow,deny deny from 199.103.104.0/23 deny from 62.13.192.0/19 deny from 62.40.128.0/17 deny from 62.46.0.0/15 deny from 62.93.64.0/18 deny from 62.99.128.0/17 deny from 62.116.0.0/19 deny from 62.116.32.0/19 deny from 62.116.64.0/19 allow from all </LIMIT> Code (markup):