我知道如何在相反方向重寫並處理查詢字符串,但我需要基於標記或類別(小寫)創建一個查詢字符串參數。因此,我可以在我的頁面中將查詢字符串用作搜索參數:將URL重寫爲查詢字符串
例如,
news/tag/Shipping/ ==> http://www.example.com/news/?tag=shipping
news/category/Other/ ==> http://www.example.com/news/?category=other
試圖
RewriteEngine On
RewriteRule ^news/([^/]*)$ /?tag=$1 [L]
謝謝。
你能分享一下你試過的嗎? – starkeen