ted_chou12 Posted December 2, 2008 Share Posted December 2, 2008 Hello. I wish to redirect a subdirectory to a subdomain: http://domain.com/sub/ => http://sub.domain.com/ which includes all the files in the subdirectory, eg. http://domain.com/sub/index.html or http://domain.com/sub/page.html Thanks, Ted. Link to comment https://forums.phpfreaks.com/topic/135222-solved-redirecting-a-subdirectory-to-a-subdomain/ Share on other sites More sharing options...
corbin Posted March 3, 2009 Share Posted March 3, 2009 Redirect or rewrite? To redirect: RewriteRule ^([^/]+)/?(.*) http://$1.somesite.com/$2 [R=301,L] If you want to do it without the user knowing, you will either need to use Alias, or mod_proxy. I would suggest Alias. Link to comment https://forums.phpfreaks.com/topic/135222-solved-redirecting-a-subdirectory-to-a-subdomain/#findComment-775175 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.