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

after updating to version 1.8.8 the user page not found due to missing "+".

getting user page not found.

Here is the .htaccess

Options -Indexes

DirectoryIndex index.php

 <IfModule mod_rewrite.c>

 RewriteEngine On

 #RewriteBase /

 RewriteCond %{HTTP_HOST} !^www\. [NC]

 RewriteRule ^ https://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L,NE]

 RewriteCond %{REQUEST_URI} ^(.*)//(.*)$

 RewriteRule . %1/%2 [R=301,L]

 RewriteCond %{REQUEST_FILENAME} !-f

 RewriteCond %{REQUEST_FILENAME} !-d

 RewriteRule ^.*$ index.php?qa-rewrite=$0 [L,QSA]

 </IfModule>

# php -- BEGIN cPanel-generated handler, do not edit

# Set the “ea-php74” package as the default “PHP” programming language.

<IfModule mime_module>

  AddHandler application/x-httpd-ea-php74 .php .php7 .phtml

</IfModule>

# php -- END cPanel-generated handler, do not edit

Q2A version: 1.8.8
by
I think it is because of apache2 new update

Please log in or register to answer this question.

...