Is my htaccess file correct ? Thank you for your help.
-
Hello,
When I check /wp-content/plugins/really-simple-ssl/ssl-test-page.php
I find:
#SSL TEST PAGE#
This page is used purely to test for ssl availability.
#SERVER-HTTPS-ON# (on)
#SERVERPORT443#
#ENVHTTPS#
#LOADBALANCER#
#SUCCESFULLY DETECTED SSL#Does it mean that everything is correct ? Because some pages sometimes do not load and my server “freezes”.
Thank you so much for your help.What I have in .htaccess is:
# BEGIN rlrssslReallySimpleSSL rsssl_version[2.4.3]
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !=on [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>
# END rlrssslReallySimpleSSL
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
- The topic ‘Is my htaccess file correct ? Thank you for your help.’ is closed to new replies.