nickfran Posted September 4, 2009 Share Posted September 4, 2009 Using .htaccess can I redirect user to certain directory based on the username and password they enter? I.E. 1. I have a .htacess password protected directory, www.mydomain.com/protected 2. Based on the username or password they enter can they be redirected to their own personal directory? 3. If username is john.smith they go to www.mydomain.com/protected/1 but if username is jane.smith then they would go to www.mydomain.com/protected/2 and so on.... Can this be done in PHP? Thanks! - Nick Quote Link to comment Share on other sites More sharing options...
taquitosensei Posted September 4, 2009 Share Posted September 4, 2009 sure can. switch($username) { case: "john.smith": header("Location: www.mydomain.com/protected/1"); break; case: "jane.smith": header("Location: www.mydomain.com/protected/1"); break; } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.