Re: + in link is converting Hex value
This is actually correct, and should be happening.
The + character is actualy a control character used to represent a space. So for example with url parameters, sending keyword = black gloves would be sent as keyword=black+gloves.
Because of this, you can't use + in a normal url because it confuses things, as its part of url rather than representing a space. As a result, its displayed as the hex code to indicate that its not to be taken as a space, but as part of the URL.
Change it from spring+flowers to spring-flowers and you won't have any problems, and will also be more search engine friendly.
|