Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
368 views
in Q2A Core by
how do i change the url structure in 1.4

so

google.com/example/answers

to

google.com/example/adifferentword

 

Thanks. much help is appreciated. xxxx

1 Answer

0 votes
by

 

In qa-config.php you have a mapping mechanism. 
 
$QA_CONST_PATH_MAP=array(
     'questions' => 'topics',
     'categories' => 'sections',
     'users' => 'contributors',
     'user' => 'contributor',
);

 

...