29.03.2019, 18:04
Quote:
|
1. MAKE BACKUP of your current .htaccess file
2. find where the request is redirected to https 3. replace that part with the code bellow. 4. save and test Code:
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteCond %{REQUEST_URI} !^/sendemail.php
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R,L]
|


