在我的magento多域站点上,我不打算将根sitemap.xml文件重写为特定于语言的sitemap.xml。
示例:
domain.com -> domain.com/sitemaps/com/sitemap.xml
domain.it -> domain.com/sitemaps/it/sitemap.xml
domain.de -> domain.com/sitemaps/de/sitemap.xml谢谢!
发布于 2014-06-28 18:18:08
变量%{HTTP_HOST}包含用于请求的主机名。假设所有域名指向同一个www-root,将其放在您的www-root中的.htaccess中。
RewriteCond %{HTTP_HOST} domain\.([a-z]+)$
RewriteRule ^sitemap\.xml$ /sitemaps/%1/sitemap.xml [L]https://stackoverflow.com/questions/24469638
复制相似问题