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 Link to comment https://forums.phpfreaks.com/topic/173110-htaccess-redirect-to-certain-directory-based-on-username-entered/ 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; } Link to comment https://forums.phpfreaks.com/topic/173110-htaccess-redirect-to-certain-directory-based-on-username-entered/#findComment-912510 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.