Hello,
I recently migrated a site of mine into a subfolder.
I redirected all of the important links individually in the .htaccess
I redirected the root domain to the subfolder using the following:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www.)?domain.com$
RewriteRule ^(/)?$ shop [L]
The results - All new pages indexed fine, new homepage (subfolder) will not index. Is this due to the lack of [R=301,L] in my redirect?
Responses will be highly appreciated ! :)