In the past, I had a forum and switched to wordpress I am trying to convert all forum links without queries to WordPress
For example, I want to login to: https://efhamcomputer.com/?t=123 It is transferred to: https://efhamcomputer.com/
without queries : ?t=123
i tray to add
RewriteEngine On
RewriteCond %{QUERY_STRING} ^t=
RewriteCond %{QUERY_STRING} ^u=
RewriteCond %{QUERY_STRING} ^f=
RewriteRule ^ %{REQUEST_URI}? [R,L]
RewriteRule (.*) hhttps://efhamcomputer.com/ [L,R=301]
but i got error 500