目前.htaccess中有代码
RewriteCond %{HTTP_HOST} ^subdomain\.domain\.zone$ [OR]
RewriteCond %{HTTP_HOST} ^www\.subdomain\.domain\.zone$
RewriteRule ^/?$ "http\:\/\/subdomain\.domain\.zone\/folder" [R=301,L]
将用户从 subdomain.domain.zone 重定向到 subdomain.domain.zone/folder/
我希望用户在地址栏中看到没有 /folder/ 的直接地址,但要使用此 /folder/ 中的站点。怎么做?