将 htaccess 与 CDN 结合使用

发布于 2024-11-05 13:06:44 字数 217 浏览 0 评论 0原文

我现有开发的网站图像网址是 http://domain.com/assets/

目前我们想要使用 CDN 拉取

我的 CDN 图像网址是 http://cdn.cdndomain.com /

如何对我现有的网站使用 CDN。我们不想更改现有的 html 图像路径。如何用.htaccess重写?

My existing developed site image url is http://domain.com/assets/

at present we want to use CDN with pull

my CDN image url is http://cdn.cdndomain.com/

how to use cdn for my existing site. We dont want to change existing html image paths. how to rewrite with .htaccess?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浮华 2024-11-12 13:06:44

尝试将其放入您的domain.com文档根目录.htaccess:

RewriteEngine On
RewriteBase /
RewriteRule ^assets/(.*)$ http://cdn.domain.com/$1 [L,R=301]

Try to put this to your domain.com document root .htaccess:

RewriteEngine On
RewriteBase /
RewriteRule ^assets/(.*)$ http://cdn.domain.com/$1 [L,R=301]
风追烟花雨 2024-11-12 13:06:44

需要考虑的一点是,CDN 提供商将允许您在 CDN 边缘网络进行重写,这将使所有重写开销远离您的原始服务器。

Something to consider is that CDN providers will allow you to do the rewrites at the CDN edge network which will keep all the overhead of the rewrites away from your Origin servers.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文