Php

如何使實際上不存在的頁面僅在某個目錄之後才連結到某個頁面?

  • September 24, 2021

我如何做到這一點,以便當使用者轉到mydomain.com/test/<any page after this point>它時,它會顯示頁面mydomain.com/testhandler/並且不返回任何錯誤。例如,我有一個系統,我使用 URI 連結到帶有頁面資訊的 xml 文件,並且我需要/test連結到它之後的每個部分

任何幫助將不勝感激,謝謝。

在配置中(無論是主要的 apache 配置還是 vhosts 塊)添加:

RewriteEngine on
RewriteRule "^/test/*" "/testhandler/" [PT]

分別。看:

https://httpd.apache.org/docs/2.4/rewrite/

https://httpd.apache.org/docs/2.4/rewrite/remapping.html

https://httpd.apache.org/docs/2.4/rewrite/flags.html

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