.htaccess 用路徑參數重寫GET 變數
問題:
問題:http://localhost/index.php?page=controller如何使用. htaccess 將GET 變數改寫為URL 路徑參數格式?具體來說,我想將:
http://localhost/controller/轉換為:
http://localhost/controller/param/value/param/value並且還支援參數例如:
http://localhost/controller/?param=value¶m=value
至:
答案:RewriteRule ^(.*)$ index.php?params= [NC, QSA]
要實現此目的,請修改.htaccess 檔案以包含以下重寫規則:
以上是如何使用 .htaccess 將 GET 變數改寫為路徑參數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!