任何人都可以帮助我实现从http://subdomain.example.com/到http://example.com/所有URL的redirect,除了以“files /”开头的所有URL吗? 谢谢
将下面的代码放在subdomain.example.com虚拟主机部分:
RewriteEngine On RewriteCond %{HTTP_HOST} ^subdomain\.example\.com [NC] RewriteCond %{REQUEST_URI} !/files RewriteRule ^(.*)$ http://example.com%{REQUEST_URI} [R=301,L]