Rewrite ¸ðµâÀ» »ç¿ëÇϱâ À§ÇÑ Apache ÄÄÆÄÀϿɼÇ
Rewrite ¸ðµâÀ» ¾²±âÀ§ÇÑ Apache ÄÄÆÄÀÏ ¿É¼ÇÀº --enable-rewrite ÀÔ´Ï´Ù.
Configure ½ÇÇà½Ã¿¡ --enable-rewrite ¸¸ Ãß°¡ÇϽøé Apache¿¡¼ rewrite ¸ðµâÀ» »ç¿ëÇÒ ÀÖ°Ô µË´Ï´Ù.
VirtualHost ¼³Á¤¹ý
<VirtualHost x.x.x.x>
ServerName test.com
ServerAlias www.test.com
ServerAdmin help@test.com
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.test\.com$
RewriteCond %{HTTP_HOST} !^test\.com$
RewriteCond %{HTTP_HOST} ^[^.]+.test\.com$
RewriteRule ^(.+) %{HTTP_HOST}$1 [C]
RewriteRule ^([^.]+)\.test\.com(.*) /home/test/htdocs/sub-domain/$1$2
DocumentRoot /home/test/htdocs
php_admin_value open_basedir /home/test:/var/tmp:/tmp
</VirtualHost>
http://test.com, http://www.test.com
/home/test/htdocs
http://sub1.test.com
/home/test/sub-domain/sub1
http://sub2.test.com
/home/test/sub-domain/sub2