Hi Guys, This is my first post so hopefully I'm using the forum correctly.
MOZ crawl tells me that I have 35 pages with a temporary redirect
- The URL column displays 302 Found along with the http:// URL
- Redirection Location column shows the corresponding https:// URL
This all seems pretty self explanatory. However, I’ve checked my .htaccess file and I can’t see any 302 references in it. I'm trying to figure out where the 302 redirects are from and how I can make them permanent
Please can anyone help me out?
My .htaccess looks like it needs a little tidy (there are 2 if blocks)
<ifmodule mod_rewrite.c="">RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.mysite.com/$1 [R,L]</ifmodule>
BEGIN WordPress
<ifmodule mod_rewrite.c="">RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteCond %{HTTP_HOST} ^mysite.com$ [NC]
RewriteRule ^(.*)$ http://www.mysite.com/$1 [R=301,L]</ifmodule>