• Resolved Vickymedia

    (@vickymedia)


    Hello,

    I installed your plugin I received too many redirect error than I uninstalled your plugin.

    without Installing any plugin my website front end shows HTTP and admin panel shows Https.

    How can I make my front end also HTTPS.

    Have tried in Settings>>>>General but still didn’t work.

    currently in Settings>>>>General url I have setted to HTTPS.

    Thanks,
    Vicky

    https://wordpress.org/plugins/wp-force-ssl/

Viewing 1 replies (of 1 total)
  • You could also create a SSL force without a plug-in. You have only creat a .htaccess file in your website.

    Install a SSL certificate at your server. I think you have this done already.
    Create a .htaccess in your root file of WordPress (like domain.com/.htacces).
    Put the next code into it:

    # BEGIN WordPress
    RewriteEngine On
    RewriteCond %{HTTPS} !=on
    RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    # END WordPress

    Change your url in the general settings from http://(www).domain.com to https(www).domain.com

Viewing 1 replies (of 1 total)
  • The topic ‘too many redirect error’ is closed to new replies.