Hello.
I had ignored / forgotten about this problem for a while, but needed to fit it today.
The solution I came up with was to use a # in the htaccess file (as I didn't need the # at the redirected page)
This seems to have worked.
I kept the second line for when a # was not included.
Now it's redirected (transparent - back end) to ....?site=alpha&value=ffab00
Okay, now I have another question.
I've added the code:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+)/intelligence/web/hex-to-rgb/([^/]+)\/$ intelligence/web/customhextorgb.php?site=$1&value=$2
to the .htaccess file, but it isn't quite working as I would expect
When I go to: http://domain.ext/alpha/intelligenc.../ff0000/, it all works fine and the query string works as expected,
but when I go to http://domain.ext/alpha/intelligenc...>%23ff0000/ [%23 is the safe-url version of #].
When I
it gives
without a value.
If I change %23 to %20 or %41,... (the codes for space or A,...), all works fine, but not with this #.
Anything I can do, or do I have to do work it some other way?
Cheers.