Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
–1 vote
1.2k views
in Plugins by

 

Hi, I have installed q2a and integrated with WP.

However, i clcik on username, I get an error 404 page

examples here:

http://www.kxlearn.com/postgraduate/

and the avaters doesn't appear on the sub q2a site.

Any help? Thanks a lot!

1 Answer

+1 vote
by
selected by
 
Best answer

This may be .htaccess issue

try to change with below

 

DirectoryIndex index.php
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /postgraduate/
RewriteCond %{REQUEST_URI} ^(.*)//(.*)$
RewriteRule . %1/%2 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ /qa/index.php?qa-rewrite=$0&%{QUERY_STRING} [L]
</IfModule>
by
Thx a lot!
it really helps.
...