Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
690 views
in Q2A Core by
edited by

How to change URL Name?

Normally,

http://www.sitename.com/questions, and the other links.

I am Turkish so I want to do this like:

http://www.sitename.com/sorular.

How can I do this

Q2A version: 1.7.2

1 Answer

+1 vote
by
See the instructions in your qa-config.php file (the part with $QA_CONST_PATH_MAP).

See also the related questions on the right for more.
by
and add htaccess:
RewriteCond %{QUERY_STRING} questions [NC]
RewriteRule ^ /sorular? [R=301,L]
...