Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
483 views
in Q2A Core by
closed by

Is it possible to change /ask url to lets say /post? I found similar question but no one answered.

closed with the note: @pupi1985's solution is working.

1 Answer

+4 votes
by
selected by
 
Best answer

Just add this to your qa-config.php file:

$QA_CONST_PATH_MAP = array(
    'ask' => 'post',
);
by
Thanks! Confirmed working. Never imagine it would be easy.
...