Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
–1 vote
864 views
in Q2A Core by
closed by
I have installed Q&A in my localhost under a sub directory.

when I enable htaccess mode from ADMIN->Grenral, after that all link says not found.

I am already using joomla and wordpress in my localhost, their htaccess is working well, so I think there is something missing in htaccess file.

<code>

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

</code>
Q2A version: latest
closed with the note: Solved
by
I also encountered the same problem, I was installed in the root directory of the site
...