CDN相关:重写图片来源的.htaccess自动网址 [英] CDN Related : Rewrite Image URLs automatically from .htaccess

查看:445
本文介绍了CDN相关:重写图片来源的.htaccess自动网址的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

最近我买了一个CDN,并设置它。在我的网站,影像储存在名为照片文件夹中的图片网址以这种方式显然是联系在一起的。 (*例如:图像/ some_image.png *)

Recently I bought a CDN and set it up. In my site, the images are stored in a folder named 'images' and the Image urls are obviously linked in this manner. (*Ex : images/some_image.png*)

由于我要使用CDN正确的方式,我需要重写的URL,而无需手动更改每个映像路径。

Since I want to use the CDN right way, I need to rewrite the urls without having to manually change each and every image path.

我试着一个.htaccess code这是提出了类似的问题。

I tried an .htaccess code which was suggested for a similar problem

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

但是,这似乎并没有正常工作,因为所有的图像不正确链接。

But that didn't seem to work properly as all the images were linked improperly.

所以,我想知道的变化,这code。任何反应将是AP preciated。

So I would like to know the changes in this code. Any response would be appreciated.

推荐答案

这应该工作:

RewriteCond %{HTTP_HOST} ^yourdomain\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.yourdomain\.com$
RewriteRule ^images\/?(.*)$ "http\:\/\/cdn\.yourdomain\.com\/$1" [R=301,L]

不过,请注意,这只是一个治标不治本!
为了获得最大出你的CDN,你需要手动为救一个HTTP,每一张图像指向CDN。

However, please note that this is just a temporary solution!
In order to get the max out of your CDN, you need manually point images to your CDN in order to save one HTTP for every image.

这篇关于CDN相关:重写图片来源的.htaccess自动网址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆