Apache-2.2

Apache 將所有 URL 重定向到另一個域,除了以子字元串開頭的 URL

  • September 26, 2011

任何人都可以幫助我在 Apache 中為所有 URL 實現從http://subdomain.example.com/>到<http://example.com/的重定向,除了以“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]

引用自:https://serverfault.com/questions/314840