Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
116 views
in Q2A Core by
Hi when entering user profile 404 error appears

only that happens with multiple names like: (john sim)

when I click on the user name this links open

https://www.mysitename.com/user/john%20sim

where is the problem?
Q2A version: 1.8.8

1 Answer

+1 vote
by

here is the solution

In your htaccess you need to add a B flag to the last line, like this:

RewriteRule ^.*$ index.php?qa-rewrite=$0&%{QUERY_STRING} [B,L]

It’s due to some changes with the urlencode function. For some reason this didn’t get updated in the htaccess-example on the bugfix branch, only the dev branch.

Thanks a lot Scott, I toke the solution from here

...