Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
961 views
in Q2A Core by

I need to remove + separator in user profile page url..

Ex: example.com/user/kavin+run

i need url like this

Ex: example.com/user/kavin-run

please provide advice to solve this problem

by
edited by

also need a solution to this problem.

Ex: example.com/tag/kavin+run

i need url like this

Ex: example.com/tag/kavin-run

1 Answer

+1 vote
by
You can not (should not) remove this . Because when ever a username has a space it will converted to a + symbol . (there are many encoding rules like that )

 

Read more about URL Encoding - http://php.net/manual/en/function.urlencode.php .
...