可以通过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/
不胜感激。
谢谢!
答案 0 :(得分:1)
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]
编辑:可能是一个缓存问题