https://redirect.netlify.com/ 第一个链接有效,但不是第二个。为什么呢?
import React from "react";
const App = () => (
<div>
<p>
<a href="http://redirect.netlify.com/manifest.json">
http://redirect.netlify.com/manifest.json
</a>
</p>
<p>
<a href="https://redirect.netlify.com/manifest.json">
https://redirect.netlify.com/manifest.json
</a>
</p>
</div>
);
export default App;