我需要將我的WordPress站點中的一個頁面從http重定向到https。我在網上搜索,但沒有任何解決方案似乎工作。這是我在我的.htaccess文件中的代碼:將重定向從http到https的特定頁面在WordPress中.htaccess
# Redirect to force SSL on test page
RewriteCond %{HTTPS} off
RewriteRule ^test/$ https://www.example.com/test/ [R=301,L]
任何建議將不勝感激。
你確定這些規則高於你的htaccess文件中的所有wordpress規則嗎? –