文起:
ISAPI_rewrite 实现二级域名||apache Rewrite 二级域名设定
文章中看到Apache下配置
把YourWwwRoot换成你自己的路径,注意这里的ServerName没有让它起作用,关建看这两行:
RewriteCond /YourWwwRoot/%{SERVER_NAME} -d
RewriteRule ^/(.*)$ /YourWwwRoot/%{SERVER_NAME}/$1 [L]
假设你访问 http://www.domain.com/test.html,就会重定向到系统的 /YourWwwRoot/www.domain.com/test.html。
以上没有环境没做测试,目前在ISAPI_rewrite下测试,是找不到路径的。
只有:
#RewriteCond /html/%{SERVER_NAME} -d
RewriteRule ^/(.*)$ /html/www.cyd-design.com/$1 [L]
域名写死才有用,那动态怎么处理?
这样写试试:
RewriteCond Host: (.*) RewriteRule (.*) /html/$1/$2 [L]