我有一個php服務器,我想重寫傳入的url。由於傳入的請求是發佈請求,我還希望發佈的數據在新的URL上傳輸。PHP重寫url並保存發佈的數據
我已成功地與以下重寫規則重定向網址:
RewriteRule ^test/(.*)$ http: //localhost/index.php?data=&1 [NC,L]
或
RewriteRule ^test/(.*)$ http: //localhost/index.php?data=&1 [NC,R=301]
我也設法與以下重寫規則保存後的數據:
RewriteRule ^test/(.*)$ http: //localhost/index.php?data=&1 [P]
問題是我不能同時在他們兩個。我究竟做錯了什麼?有沒有辦法重定向網址並保留髮布數據?
我想重寫不重定向。 – reven