Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
312 views
in Q2A Core by
Hello

Q2A send confirm links with to // and the browser cant load confirm page.

How can i repaire it?
Q2A version: 1.6.1

2 Answers

0 votes
by
I had this happening too, but I fixed it with changes to my .htaccess file. I found that adding "RewriteBase /" to my .htaccess file would not stop this from happening, but it would no longer cause any problems.
0 votes
by

I can't say that this is 100% how it's meant to look, but here is the contents of my current .htaccess file:

DirectoryIndex index.php 
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]
...