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

Here is my current .htaccess, Apache version 2.4.34 my www.satechhelp.co.za

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>

Please log in or register to answer this question.

...