我正在美化我的URL,以删除链接末尾的.html。到目前为止,一切都很好,我不需要任何帮助。我正在尝试提供重定向,以防有人拥有旧链接且.html仍然存在。所以我想重定向:
example.com/articles/dmg-me.html
to
example.com/articles/dmg-me
我在S3存储桶中添加了以下内容作为重定向规则,但是它不起作用。
<RoutingRules>
<RoutingRule>
<Condition>
<KeyPrefixEquals>.html</KeyPrefixEquals>
</Condition>
<Redirect>
<HostName>gameboyessentials.com</HostName>
<ReplaceKeyPrefixWith></ReplaceKeyPrefixWith>
</Redirect>
</RoutingRule>
</RoutingRules>
在同一个XML文件中还有其他可以正常工作的重定向。