在.htaccess里面配置
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} ^another.site.com$ [NC]
RewriteCond %{REQUEST_URI} !^/another/
RewriteRule ^(.*)$ another/$1 [QSA,PT,L]
这个表示。如果遇到 another.site.com 就定向到目录下的another 目录里面去访问
1 打开重写引擎
2重写目录的基准目录 /
3 重写条件1是 主机名是another.site.com 正则
4重写条件2是 URI 不包含another这个目录