我需要重定向/ /?開始= 10 https://www.example.com/new-path/重定向URL與查詢字符串的htaccess
路徑如何能在我的.htaccess需要每個URL做到這一點?
我曾嘗試:
redirectMatch 301 ^/path/?start=10 https://www.example.com/new-path/
RewriteRule ^/path/?start=10$ https://www.example.com/new-path/
Redirect 301 /path/?start=10 https://www.example.com/new-path/
但這些工作。
我需要它重定向到https在同一時間。 –
使用mod_rewrite,答案更新 –