Using htaccess block access to a range of URLs except for my IP address

旧巷老猫 提交于 2019-12-25 02:55:43

问题


How can I block a range or URL's for all but my IP address.

So ...

Allow http://mydomain.com/* to all users

Block http://mydomain.com/thisdirectoryandallcontents/* to all but my IP

I found some code from another site which might work but I don't have the htaccess skills to adapt it

Options +FollowSymlinks
RewriteEngine on

#urls to exclude
RewriteCond %{REQUEST_URI} !/url-to-exclude-1$
RewriteCond %{REQUEST_URI} !/url-to-exclude-2$
RewriteCond %{REQUEST_URI} !^/images$
RewriteCond %{REQUEST_URI} !^/css$
RewriteCond %{REQUEST_URI} !^/$

#ip to allow access
RewriteCond %{REMOTE_HOST} !^11\.11\.11\.11$

#send to root
RewriteRule .? /http://www.mydomain.com [R=302,L]

回答1:


I have a similar requirement and do basically the same when I put my page (or a part) on maintenance. The content of the htaccess file looks like this:

Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_URI} /thisdirectoryandallcontents
RewriteCond %{REMOTE_ADDR} !=111.111.111.111
RewriteRule ^.*$ /maintenance.php [R=302,L]

I will explain it step by step according to your requirements:

  1. Every user should be able to access the homepage http://mydomain.com/ - cool, no configuration needed.
  2. The first RewriteCond checks, if the request lies within the folder /thisdirectoryandallcontents.
  3. The second RewriteCond checks, if the IP address is any other then 111.111.111.111 (here you have to write your IP address).
  4. If both of the conditions apply, we redirect the user to /maintenance.php. Here I usually output a message to the user, that the page is currently under maintenance. You could display a message, that the user doesn't have access to /thisdirectoryandallcontents. Instead of redirecting the user to the maintenance page, you could also redirect him to the home page if you wish to.


来源:https://stackoverflow.com/questions/23377230/using-htaccess-block-access-to-a-range-of-urls-except-for-my-ip-address

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!