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

My Question2Answear are showing a 404 error in all links. I did not nothing in the database or uptodate in wordpress or Q2A.  Only homepage works.

In a test I deleted the .htaccess of Wordpress and It works fine, but wordpress not...

http://www.cabelosecortes.com/r/

Any Idea?

Thank you in advance!

3 Answers

0 votes
by
edited by

Solved!

I needed to add the line:

RewriteBase /r

:-)

0 votes
by

In Q&A downloaded theme folder,plz read Help - Install - Docs>index.html, it can be helpful in theme installation for you and helps in how to make all pages dynamic.

0 votes
by

hi,I want to know how you solved this problem.

my website url is : http://www.kxlearn.com/suggestion

here is my htaccess's content:

DirectoryIndex index.php
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /suggestion
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>
but it doesn't seem to work..
...