> On 21 Jul 2016, at 19:10, Jordan Rose wrote: > >> On Jul 18, 2016, at 16:57, Mark Lacey wrote: >> >>> On Jul 18, 2016, at 4:44 PM, Jacob Bandes-Storch wrote: >>> >>> This is now live: http://apple.github.io/swift-evolution/ >> >> Very very nice! >> >> I wonder if we should do something to avoid the 404 here though: >> http://apple.github.io >> >> Perhaps a redirect to https://github.com/apple/swift or maybe directly to >> https://github.com/apple/swift/blob/master/README.md? > > The Swift Open Source project isn’t the only project under github.com/apple. > Any landing page here would have to come from Apple PR.
You could add a simple <https://github.com/apple/apple.github.io/blob/master/404.html> file: <!DOCTYPE html> <meta charset="UTF-8" /> <meta http-equiv="Refresh" content="0; URL=https://developer.apple.com/opensource/" /> <title>404 Not Found</title> That will redirect to the URL which also appears at the top of the <https://github.com/apple/> page. -- Ben _______________________________________________ swift-evolution mailing list [email protected] https://lists.swift.org/mailman/listinfo/swift-evolution
