我在我的mac上使用apache服務器,一切正常。apache服務器:將所有url請求重定向到index.php
現在我有一個網頁,其index.php
是相當複雜的: 在index.php
,它期望url像:localhost/~username/hostname/page_a
。 而page_a
的內容其實是.php
文件存放在content
文件夾中。 所以在index.php
,它只是解析page_a
,並做一個include:''來呈現請求頁面。
但是在.htaccess
中,重定向規則未正確配置。
例如,如果我點擊一個鏈接:localhost/~username/hostname/page_a
, 有沒有什麼辦法來重定向URL以便index.php
, ,並在同一時間,該網址依然會localhost/~username/hostname/page_a
, 使index.php
可以解析,並使其是否正確?
謝謝。