重定向到 CDN

重定向到 CDN

我想要与我的几个客户分发一个 javascript 文件,他们的页面每天有几千次独立访问,所以我的文件会被调用很多次,我不希望我的网络服务器承受这种压力,所以我从 RackSpace 购买了一个 CDN 存储。

因为这里一切都正常,但是文件的 URL,我的 CDN 给了我一个很长的 URL,我想将其缩短为类似 js-api.mysite.com 的 URL,这样我的客户就可以将该 URL 添加到他们的网站。

我不太清楚两件事:

  1. 我应该使用哪种类型的重定向才能完全维护我的网络服务器?(如果需要,我可以购买另一个域名)
  2. 我原来的长 URL 是通过 https 提供的,在选择重定向类型时我需要考虑到这一点吗?

答案1

你做错了——直接从 CDN 获取源代码。

你不必再进一步阅读页:

    <meta name="og:image" content="http://cdn.sstatic.net/serverfault/img/[email protected]?v=9b1f48ae296b"/>
    <meta name="og:title" content="Redirect to a CDN" />
    <meta name="og:description" content="I will like to distribute a javascript file with several of my clients, they have several thousands of unique visits a day on their pages, so my file will be called a lot of times, i don&#39;t want that " />
    <meta name="og:url" content="http://serverfault.com/questions/609568/redirect-to-a-cdn"/>
    <link rel="canonical" href="http://serverfault.com/questions/609568/redirect-to-a-cdn" />



    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
    <script src="//cdn.sstatic.net/Js/stub.en.js?v=d142d951ee55"></script>
    <link rel="stylesheet" type="text/css" href="//cdn.sstatic.net/serverfault/all.css?v=01ae6db1af10">

相关内容