.htaccess XML-多域站点地图重定向
.htaccess XML-Sitemap Redirect for multi-domain
可以通过 2 个不同的域访问我的主页。
我为每个站点手动创建了 sitemap.xml,它位于我页面的根目录中。 (sitemap1.xml / sitemap2.xml)
进入URL后example.at/sitemap.xml或example.de/sitemap。 xml 我需要重定向到正确的 .xml 文件。
1: https://example.at/sitemap.xml => https://example.at/sitemap1.xml
2: https://example.de/sitemap.xml => https://example.de/sitemap2.xml
我尝试了以下重定向规则:
RewriteCond %{REQUEST_URI} ^\/sitemap\.xml$
RewriteRule .* https://example.at/sitemap1.xml [R=301,L]
RewriteCond %{REQUEST_URI} ^\/sitemap\.xml$
RewriteRule .* https://example.de/sitemap2.xml [R=301,L]
无论我输入.de还是.at地址,我都会被转发到:
https://example.at/sitemap1.xml.
我没有使用重写规则的经验,所以我使用了:
https://www.webcellent.com/tools/modrewrite/
非常感谢任何帮助。
提前致谢!
RewriteCond %{HTTP_HOST} ^example.at$
RewriteCond %{REQUEST_URI} /sitemap.xml
RewriteRule ^(.*)$ https://example.at/sitemap1.xml [R=301,L]
RewriteCond %{HTTP_HOST} ^example.de$
RewriteCond %{REQUEST_URI} /sitemap.xml
RewriteRule ^(.*)$ https://example.de/sitemap2.xml [R=301,L]
编辑:可能是缓存问题
可以通过 2 个不同的域访问我的主页。
我为每个站点手动创建了 sitemap.xml,它位于我页面的根目录中。 (sitemap1.xml / sitemap2.xml)
进入URL后example.at/sitemap.xml或example.de/sitemap。 xml 我需要重定向到正确的 .xml 文件。
1: https://example.at/sitemap.xml => https://example.at/sitemap1.xml
2: https://example.de/sitemap.xml => https://example.de/sitemap2.xml
我尝试了以下重定向规则:
RewriteCond %{REQUEST_URI} ^\/sitemap\.xml$
RewriteRule .* https://example.at/sitemap1.xml [R=301,L]
RewriteCond %{REQUEST_URI} ^\/sitemap\.xml$
RewriteRule .* https://example.de/sitemap2.xml [R=301,L]
无论我输入.de还是.at地址,我都会被转发到: https://example.at/sitemap1.xml.
我没有使用重写规则的经验,所以我使用了: https://www.webcellent.com/tools/modrewrite/
非常感谢任何帮助。
提前致谢!
RewriteCond %{HTTP_HOST} ^example.at$
RewriteCond %{REQUEST_URI} /sitemap.xml
RewriteRule ^(.*)$ https://example.at/sitemap1.xml [R=301,L]
RewriteCond %{HTTP_HOST} ^example.de$
RewriteCond %{REQUEST_URI} /sitemap.xml
RewriteRule ^(.*)$ https://example.de/sitemap2.xml [R=301,L]
编辑:可能是缓存问题