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

I want to change my questions and ask url to something else is this possible? For example: site.com/ask and site.com/questions to site.com/differenttxt and site.com/othertext

Is this possible please show me how if so thanks.

by
I tried doing url rewrite via htaccess, I couldn't do it... Would be nice if someone helped.

2 Answers

+5 votes
by

Yes, check in the main config file for the QA_CONST_PATH_MAP option. You would need something like this:

$QA_CONST_PATH_MAP=array( 
    'ask' => 'differenttext', 
    'questions' => 'othertext', 
);

 

by
It does not change the links. Do we need a new installation ?
by
Hi, thanks for replying but this does not seem to work :-(
by
Hmm, it works fine for me. I think you are doing something wrong. Can you post the code you added there to qa-config.php?
+1 vote
by

I have figured it out!

Inside qa-base find line below:

$qa_request_map=is_array(@$QA_CONST_PATH_MAP) ? $QA_CONST_PATH_MAP : array();

And  insert custom url in bracket as shown below:

('questions' => 'Your custom name',);

('ask' => 'Your custom name 2',);

 

...