如何配置apache代理来提供hexo的静态文件

时间:2016-06-17 08:16:32

标签: apache hexo

我使用apache代理获取我的hexo博客站点。

ProxyPass /blog http://127.0.0.1:4000/
ProxyPassReverse /blog http://127.0.0.1:4000/

但apache无法正确提供hexo静态文件(css,js,images)。 我必须重写静态文件URL,如下所示:

RewriteEngine On
RewriteRule ^/js/(.+)$ /blog/js/$1 [R]
RewriteRule ^/css/(.+)$ /blog/css/$1 [R]
RewriteRule ^/fancybox/(.+)$ /blog/fancybox/$1 [R]

当我更改主题时,我必须重写那些重写。 有没有一种简单的方法可以解决这个问题?。

0 个答案:

没有答案