开发者

Use htaccess with CDN [duplicate]

开发者 https://www.devze.com 2023-03-04 23:51 出处:网络
This question already has an answer here: CDN Related : Rewrite Image URLs automatically from .htaccess
This question already has an answer here: CDN Related : Rewrite Image URLs automatically from .htaccess (1 answer) Closed 9 years ago.

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.开发者_如何学JAVA We dont want to change existing html image paths. how to rewrite with .htaccess?


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

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


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消