htaccess - 只为images / css / js重写url

时间:2014-09-21 17:37:59

标签: css regex apache .htaccess mod-rewrite

我想使用谷歌硬盘分享静态内容到我的网站。我如何使用htaccess来做到这一点?我只想重写image,css和js文件的地址,因此根文件夹中的其余文件应该从主服务器提供。

例如,我想重写 www.adress.pl/template/mytemplate/image.jpg

www.adress.pl/template/mytemplate/css/some.css

为:

googledrive.com/host/0B4zbBxGUyY4NRFVlVU5/image.jpg

googledrive.com/host/0B4zbBxGUyY4NRFVlVU5/css/some.css

有可能吗?

1 个答案:

答案 0 :(得分:1)

您可以将此规则作为根目录中的第一条规则.htaccess:

RewriteEngine On

RewriteRule ^template/mytemplate/(.+)$ http://googledrive.com/host/0B4zbBxGUyY4NRFVlVU5/$1 [L,NC,R=301,NE]