有人能帮我在 Apache 中实现重定向吗http://subdomain.example.com/到http://example.com/除以“files/”开头的 URL 外,所有 URL 都适用吗?谢谢
答案1
将下面的代码放在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]