Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Rogier Lankhorst

    (@rogierlankhorst)

    Hi,

    By default the plugin enables a 301 wp redirect. You can also enable a .htaccess redirect, which I recommend to do. You can find this setting in settings/ssl

    Thread Starter patlal

    (@patlal)

    Hello Rogier,

    thanks for your reply. I noticed this setting in setting/ssl but I’m asking myself if I have to write the redirection myself or is it done by the plugin ?

    If I have to do it myself, I wonder if this code is OK for me ? (knowing that besides the domain nariaconseil.com, I also want to redirect the following domains naria.fr and nariaconseil.fr to nariaconseil.com)

    RewriteEngine on
    RewriteCond %{HTTPS} !=on
    RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

    Best,
    Patrice

    Plugin Author Mark

    (@markwolters)

    Hi Patrice,

    when you enable the .htaccess redirect option in the Really Simple SSL settings, the plugin will automatically detect the optimal configuration and will write the redirects to your .htaccess file, you don’t have to make any changes yourself.

    Redirect rules to other domains like naria.fr and nariaconseil.fr to nariaconseil.com are not set by the plugin. For this you’d have to edit the .htaccess file on those domains to something like this:

    RewriteEngine on 
    RewriteRule ^(.*)$ https://nariaconseil.com/$1 [R=301,L]

    Most hosting providers offer an option to redirect domains as well, you could have a look at that.

    Thread Starter patlal

    (@patlal)

    Hello Mark,

    Thanks a lot for your advices.

    Best,
    Patrice

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Do I need redirections after installing Simple SSL’ is closed to new replies.