Replace this
Code: Select all
RewriteBase /
RewriteRule sitemap.xml /buy/index.php?route=feed/google_sitemap
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*) /buy/index.php?_route_=$1 [L,QSA]
Code: Select all
#below this command SEO work fine in annelim.domain.com which also is multistore of domain.com
#but domain.com SEO not work fine
RewriteBase /
RewriteCond %{HTTP_HOST} ^(www\.)?annelim.domain.com [NC]
RewriteRule sitemap.xml /index.php?route=feed/google_sitemap
RewriteCond %{HTTP_HOST} ^(www\.)?annelim.domain.com [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*) /index.php?_route_=$1 [L,QSA]
#below this command SEO work fine in domain.com
#but annelim.domain.com SEO not work fine
RewriteRule sitemap.xml /buy/index.php?route=feed/google_sitemap
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*) /buy/index.php?_route_=$1 [L,QSA]