I’m trying to get this but i really don’t know why won’t work. I try to change things and params and won’t work:
RewriteCond %{QUERY_STRING} board=([0-9]+).0
RewriteRule ^forum/index\.php$ index.php?option=/$1? [R=301,L]
url:
www.abc.com/forum/index.php?board=13.0
It should be something like this:
That way the back reference $1 gets the group inside
()in the regex.Modify accordingly with what should be inside the round brackets.
UPDATE
Back reference %1 gets the group in the previous condition’s Regex (Value of Board).