I have installed QnA in my domain alias site (my main domain is site1.com hosted in godaddy, QnA is installed in site2.com)
I see all the last 4 out of 5 (except the first one) option:
/index.php/123/why-do-birds-sing
/?qa=123/why-do-birds-sing
/?qa=123&qa_1=why-do-birds-sing
/index.php?qa=123&qa_1=why-do-birds-sing
But, I want the first option: /123/why-do-birds-sing (requires htaccess file)
Could somebody plz provide me the .htaccess file, here I paste mine:
DirectoryIndex index.php
RewriteEngine On
#RewriteBase /your-sub-directory
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]
I contacted godaddy, and they said, everything is okay on their part after reading this page: http://www.question2answer.org/htaccess.php
Please, suggest. Even after 3 months of deploying the site and having more than 100 QnAs my site is not Google friendly.