I tried editing the .htaccess using some tutorials I found online, I have the following
DirectoryIndex index.php
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule (.*)questions$ $1posts [NC,L,R]
#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>
Which does indeed rewrite from questions to posts but, also redirects to: /member/UserName/posts which gives me a 404
How can I have it just rewrite and not redirect, is this possible?