Ah, and reset, delete, change, .htaccess files do nothing.
Probably you are editing wrong .htaccess. Can you check both .htaccess files of your both sites?
You also need to disable plugin before editing .htaccess as well.
The only thing plugin does is modifying your .htaccess, so removing its modifications from there should fix the issue.
Also, just in case, go to your WP Dashboard -> Settings -> General and check if both WordPress Address (URL) and Site Address (URL) are correct.
cuzcoanimatronics.fr (site down)
# 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
Parallaxpictures (site where i use you’r module)
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
</IfModule>
# 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
These two lines redirect the site to HTTPS:
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
Can you comment them out by putting # at the beginning, e.g.:
#RewriteCond %{HTTPS} off
#RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
And see if this helps?
Unfortunately no, my website continues to use the wrong certificate. Your module has crashed the ssl configuration of my cuzcoanimatronics site for the parallaxpictures site. My hostname is cuzcoanimatronics.fr , maybe that it comes into conflict?
The plugin only changes .htaccess file to make redirects. It does not modify apache config files or whatsoever. If you followed instructions from this post https://ww.wp.xz.cn/support/topic/bad-cert-domain/#post-10344528 , the plugin should be completely disabled and no longer redirect your site to HTTPS.
However, this certificate problem occurred just after enabling the configuration of your module. I do not want to disable ssl, my site is configured to use only ssl. If i do it will beackdown. I know that my certificates let’s encrypt are correct. Thank you for your reply
What I’m trying to help you with is to undo the changes plugin made to your site. After that, when it’s back to how it was before you installed the plugin, we can try to figure out why it happened and how to fix it.
If this is some error in the plugin itself, I can rectify it. If this is error or some conflict in your webserver config, you can rectify that to make things work as expected.
I disable all ssl configurations of this site (URL passed from https to http via phpmyadmin, vhost 443 removed and delete new htacess content) but the problem persists.
Hi, the problem comes from a vhost https redirection. Can your module be responsible for this? If you have any idea about the resolution of this problem I will be grateful to you, thanks you.
I found the solution, change
<VirtualHost *:80>
to
<VirtualHost sitename.com:80>
Thank you for your information and glad you have resolved it.
Like I mentioned earlier, plugin can’t control web server config files, therefore the only way to fix your issue is to rectify those yourself.
And thank you for sharing your solution. I’m sure it will be useful for people having similar issues.