0
我有2個參數的URL,我想將用戶重定向到一個乾淨的URLhtaccess的重定向有兩個參數
https://www.example.com/songs?date=1999&btn-login=
我需要它是
https://www.example.com/songs/1999
我該怎麼辦這個?
我都試過,但該URL保持原樣,沒有任何變動
RewriteCond %{THE_REQUEST} ^(GET|POST)\ /songs\.php\?date=(.*)&btn-login=\ HTTP
RewriteRule^/%2? [R,L]
#Internal rewrite
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /songs.php?date=$1 [L]
你能分享一下你迄今爲止試過的嗎? – starkeen
我編輯我的問題 –
你是否輸入文件名沒有擴展名,例如**歌曲**而不是** songs.php **? – starkeen