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

I added. htaccess
Redirect 301 /old/old.html /new

and now when typing url site.com/old/old.html there is a redirect:
site.com/new?qa-rewrite=old/old.html

how to remove the qa-rewrite=old/old.html?

Q2A version: 1.4.3
by
Can you please post the content of your .htaccess file?
by
Contents of default:

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]

Redirect 301 /old/old.html /new
by
Did you determine a workaround to this?
by
No, I have not changed anything,
I only need 5 pages redirect

Please log in or register to answer this question.

...