MyBB Community Forums

Full Version: Some Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What I am trying to achieve is to block all visitors from a website except for 2 (ip's). The people whose IP don't match the ones specified will be redirected to http://jasonl.me

I've been trying to do this myself for quite a bit but can't figure it out. Can anyone help me out?

Thanks!
ErrorDocument 403 http://jasonl.me/
Order deny,allow
Deny from all
Allow from 127.0.0.1
Allow from 127.0.0.1
(2011-11-06, 03:40 PM)faviouz Wrote: [ -> ]
ErrorDocument 403 http://jasonl.me/
Order deny,allow
Deny from all
Allow from 127.0.0.1
Allow from 127.0.0.1

Thanks faviouz. Worked like a charm.