是否可以使用 .htaccess 重写规则将子子域重定向到子域作为新文件夹的子域?
例如......当我去 2013.archive.example.com 时,我想最终进入 archive.example.com/2013..
已经尝试了一些东西,当前的 .htaccess 是:
RewriteRule On
RewriteCond %{HTTP_HOST} ^(.*)\.archive\.example\.com$
RewriteRule ^(.*)$ archive.example.com/%1/$1 [L]
不幸的是,它不起作用。对此有什么建议吗?