php apache url redirect


php apache url redirect

我需要有关 Apache 重定向的帮助。我有这样的页面

http://www.domain.com/1841-England-Census/County/Surname/Aa
http://www.domain.com/1851-England-Census/County/AA
http://www.domain.com/1861-England-Census/Surname/AA

我希望这些页面,即子目录下的任何页面 http://www.domain.com/????-England-Census/分别重定向到以下新 URL,而无需向新 URL 添加任何查询字符串

http://www.domain.com/search/?Key=1841
http://www.domain.com/search/?Key=1851
http://www.domain.com/search/?Key=1861

只需添加在将任何数据发送到屏幕之前在 PHP 中

/* Redirect browser */
header("Location: http://www.google.com");