I have this url: mysite.com/account/user#editSucc
, I want it to be parsed as mysite.com?goTo=account§ion=user&msg=editSucc
.
This is my .htaccess file:
RewriteEngine On
RewriteRule ^account/([A-Za-z-]+)$ /?goTo=account§ion=$1 [L,NC]
How can I make the part with the #
symbol? and merge it with the existing code?
Thanks.