.htaccess 用路徑參數重寫GET 變數
問題:
問題:http://localhost/index.php?page=controller
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中文網其他相關文章!