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

I have two URLs:

 
How can i check it?
 
I'm learning english, so it's bad. Thank you!

1 Answer

+2 votes
by
selected by
 
Best answer

I'm not 100% about this but probably you can do something like this. Locate your selected qa-theme.php file and add the following function:

public function initialize() {
    parent::initialize();
    if ($this->template === 'question') {
        $unaccentedRequest = qa_q_request(
            qa_request_part(0),
            $this->content['q_view']['raw']['title']
        );
        if ($unaccentedRequest !== qa_request()) {
            qa_redirect($unaccentedRequest);
        }
    }
}

I'm assuming you're using v1.7.0+

by
It work!
Now my site work well, thank you so much
...