In this post I want to explain " How to redirect the sub domain to a sub folder with .htaccess". I had implemented this forlabs.9lessons.info and demos.9lessons.info. I hope it is useful for you.
Example .htaccess code
You have to replace your sub domain and sub folder name.
Example .htaccess code
You have to replace your sub domain and sub folder name.
RewriteEngine On
RewriteCond %{HTTP_HOST} ^demos\.9lessons\.info$
RewriteCond %{REQUEST_URI} !^/demos/
RewriteRule (.*) /demos/$1
RewriteEngine On
RewriteCond %{HTTP_HOST} ^labs\.9lessons\.info$
RewriteCond %{REQUEST_URI} !^/labs/
RewriteRule (.*) /labs/$1
RewriteCond %{HTTP_HOST} ^demos\.9lessons\.info$
RewriteCond %{REQUEST_URI} !^/demos/
RewriteRule (.*) /demos/$1
RewriteEngine On
RewriteCond %{HTTP_HOST} ^labs\.9lessons\.info$
RewriteCond %{REQUEST_URI} !^/labs/
RewriteRule (.*) /labs/$1
This article is taken from here: http://www.9lessons.info/2010/01/redirect-sub-domain-to-sub-folder-with.html
No comments:
Post a Comment
Please Comment Here!