I have a SEO link that shows a space and thus results in looking like:
/metusion%20test.html
The username of a user can be multiple words like: Metusion Test
but this results in the issue mentioned above
How can I do it so that it shows as /metusion.test.html
Any trick?
thx
someone told me to do this: str_replace('%20', '.', $stringvariable);
but I have no idea where and how to implement that code