Redirect The Sub Domain To a Sub Folder with .htaccess
หน้าแรก SEO Redirect The Sub Domain To a Sub Folder with .htaccess
In this post I want to explain " How to redirect the sub domain to a sub folder with .htaccess". I had implemented this for labs.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.
| Code |
| 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 |
http://www.9lessons.info/2010/01/redirect-sub-domain-to-sub-folder-with.html
ขึ้นไปด้านบน
