I am trying to make a friendly URL through a RewriteRule , but it continues to ignore # as part of the variable value.
The line on .htaccess is as simple as this
RewriteRule ^key/(.+)/$ index.php?key=$1
and requested URL
http://www.example.com/key/c%23/
but I get c as get variable, not c%23 .
What exactly am I doing wrong?
source share