Apache-2.2

如何從 ?page_id=… (apache) 重定向?

  • October 29, 2014

我在 Wordpress 上有網站。它是 Wordpress 中的網頁www.my-domain/?page_id=111

現在我需要在 Wordpress 之外(在同一台伺服器上)創建頁面並將流量定向到它而不是 ?page_id=111。

當我在 .htaccess 中創建一些規則時,Redirect new_file.php https://www.my-domain/?page_id=111什麼也沒有發生。

謝謝你的每一個建議。

你的參數顛倒了。它應該是: Redirect old.html new.html

但是,重定向不會處理查詢字元串。改用這個:

RewriteEngine On
RewriteCond %{QUERY_STRING} page_id=111
RewriteRule oldpage.php newpage.php

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