我有来自子域上不同服务器的内容,我想将其用作子目录。domain.com/sub 应该可以访问 sub.domain.com 中的所有内容我希望子文件夹也能正常工作例如: sub.domain.com/about 应该是 domain.com/sub/about
这是我当前的 .htaccess 内容
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^(sorry).* - [NC,L]
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
任何帮助表示赞赏。谢谢!