Page 1 of 1
htaccess redirect to https
Posted: Fri Aug 16, 2019 6:29 pm
by ponton.z
Jak uruchomić w programie wtyczkę htaccess redirect to https ?
Re: htaccess redirect to https
Posted: Fri Aug 16, 2019 6:58 pm
by BaconFries
This is something you will need to configure on your host/server which they should assist you with. Can you please use English to post questions as you have previously thanks.
Re: htaccess redirect to https
Posted: Fri Aug 16, 2019 7:04 pm
by ponton.z
How to run the htaccess redirect to https plugin in the program?
Re: htaccess redirect to https
Posted: Fri Aug 16, 2019 7:07 pm
by BaconFries
You cant as already mentioned you must configure it on your server.
Re: htaccess redirect to https
Posted: Fri Aug 16, 2019 7:41 pm
by ponton.z
And you can describe how to do it (pattern)
Re: htaccess redirect to https
Posted: Fri Aug 16, 2019 8:02 pm
by alan_sh
This may work
RewriteEngine On
RewriteCond %{HTTPS} !on
RewriteCond %{REQUEST_URI} !\.well-known/acme-challenge
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Alternatively look here
https://www.inmotionhosting.com/support ... ccess-file
Re: htaccess redirect to https
Posted: Fri Aug 16, 2019 8:19 pm
by ponton.z
Thank you works