Answers for "redirect https to http wordpress"

CSS
0

wordpress default htaccess code http to https redirection

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

# BEGIN WordPress
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Posted by: Guest on March-23-2021
0

inner pages redirecting to the https wordpress

My issue was resolved by checking the log file of the website and found the 
.htaccess permission was '640' and updated to the '755' and worked like charm!

Permission denied: [client IP:57563] AH00529: 
/var/www/html/WEB_FOLDER/public_html/wp-content/uploads/.htaccess 
pcfg_openfile: unable to check htaccess file, ensure it is readable and that 
'/var/www/html/WEB_FOLDER/public_html/wp-content/uploads/' is executable
Posted by: Guest on April-02-2021

Code answers related to "redirect https to http wordpress"

Browse Popular Code Answers by Language