Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
504 views
in Q2A Core by
hi, i want change this /questions , /unanswered, /users for example like this: /ques, /noanswer, /alluser

its only example, i will change different. because different country. thanks for help!
Q2A version: latest

1 Answer

+1 vote
by

Yes you can do it by adding following code snippet at the end of your qa-config.php file:

$QA_CONST_PATH_MAP=array(
'questions' => 'ques',
'unanswered' => 'noanswe',
'users' => 'alluser'
);
by
i open qa-config.php and i do like this:
    $QA_CONST_PATH_MAP=array(
        'questions' => 'konu',
        'categories' => 'kategori',
        'users' => 'uyeler',
        'user' => 'uye',
    );
but nothing changed. Do I need to do something else
by
thanks for your answer. i start edit fro qa-page.php.
by
Do you mean you are directly editing the qa-page.php file to make the changes?
by
yes i edited qa-page.php
...