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

"I tried to look up questions about the .htaccess file and okay with the link structure before asking, but I couldn't solve the problem. So, I wanted to share it with you and seek your help."
this is my htaccess file

Options -Indexes

DirectoryIndex index.php

<IfModule mod_rewrite.c>

    RewriteEngine On

    # Redirect HTTP to HTTPS

    RewriteCond %{HTTPS} off

    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

    # Existing rules

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule ^(.*)$ index.php?qa-rewrite=$1 [B,L]

</IfModule>

share me your htaccess why in my website ok don't show

Q2A version: 8.8.1
by
I have the same problem in my new VPS
Ubuntu 22.04
apache2

Please log in or register to answer this question.

...