Hi, ??
An odd situation experienced with a site which has SSL on it, on uninstalling Really Simple SSL it was a finger fehler when choosing “revert to http”. After the uninstall, the htaccess file still had Really Simple SSL directives and comment headers for the following, which I removed:
`<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !=on [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
</IfModule>`
The entire htaccess file now has that block above this:
`# BEGIN WordPress
# The directives (lines) between “BEGIN WordPress” and “END WordPress” are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress`
The site landing page itself still shows, however, the files that were accessed via the htaccess rules are not available anymore- is it possible there now exists a WP misconfiguration?
Thanks.