Hi I am using joomla platform , I recently redirected my site from http to https using .htaccess. redirection was successful but when I try to access restricted pages it gives status code as 301 Moved Permanently, the joomla pages which are restricted are redirected Permanently. if anyone knows issue please provide solution
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP:X-Forwarded-Proto} =http
RewriteRule .* https://%{HTTP:Host}%{REQUEST_URI} [L,R=permanent]
RewriteBase /
</IfModule>