Apache-2.2
Apache 將所有 URL 重定向到另一個域,除了以子字元串開頭的 URL
任何人都可以幫助我在 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]