I would like to redirect any user who logs in from an IP range of 123.123.123.* to be redirected to special.page.html, and have anyone from any other IP range to just view the regular home page. Any suggestions on how I can do this in my .htaccess file? james
Give this a shot. RewriteCond %{REMOTE_ADDR} ^123\.123\.123\. RewriteRule ^index\.html$ special.page.html [R=301,L] Code (markup):