How do I use this RedirectMatch with limiting by IP address?
This is what I have right now, and it works as is:
RewriteCond %{REMOTE_ADDR} !=127.0.0.1
`RedirectMatch 302 ^/dir/.*$ http://mysite.org/myotherdir`
I want this to work only if not accessed from two different IP addresses. A visit from any other IP address should execute this code in my .htaccess.
Thank you!