im not very familiar yet with regular expression and rewrite url
im currently using this rewrite url
"/mypage/(.+?)/(\d+)(/([a-z]{0,2}))?(\?(.*))?$" => "/Page.php?mypage=$2&lang=$4&$6"
and the output for this is
mypage/this-is-my-first-page/1
now the thing is this url want to change to
mypage/this-is-my-first-page?h=1
the string "this-is-my-first-page" could be anything (dynamic)
is this correct
"/mypage/(.+?)/(/([a-z]{0,2}))?(\?(.*))?$" => "/Page.php?lang=$4&$6"
thanks