+ 1
What code should be added When edit redirect http to https in htaccess ?
Redirect Only a Specific Folder
1 Odpowiedź
+ 2
Redirecting to HTTPS on a specific folder, add the following:
RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteCond %{REQUEST_URI} folder RewriteRule ^(.*)$ https://www.yourdomain.com/folder/$1 [R,L]