redirect 302 to 301 code example
Example 1: 301 redirect http to https
#For apache .htaccess
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
Example 2: 301 and 302 redirect
301 redirect is a permanent redirect
302 redirect is a temporary redirect