Ok, this is in conjunction with my other post: Rewrite not working in .htaccess file
However, this is not a repost of the same question. This time I am only focusing on the first part of my .htaccess
file.
SetEnv HTTPS on
<IfModule mod_rewrite.c>
RewriteEngine On
Options -Indexes
# Send would-be 404 requests to Craft
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/(favicon\.ico|apple-touch-icon.*\.png)$ [NC]
RewriteRule (.+) index.php?p=$1 [QSA]
</IfModule>
I tested it here: https://htaccess.madewithlove.be/ and got the following from the site - debugging info:
My Questions:
Is this site fully functional (save what they call out in at the bottom of the page) ?
What is causing my last line to not get met?
I reached out to the developer who setup this .htaccess
file, and unfortunately, he was not able to answer why the last line was not met. He was honest and said that this part of the Linux world he was not the most versed in, so he ended up not being a good resource -- hence my very first question. I am a newbie to rewrite rules, so I do apologize if this is something simple and I am just missing it.
Please let me know if this post needs more clarification or to be formatted better. Thank you to everyone who is able to assist or explain anything here! :-)