apache 24 配置301跳转 解决cdn问题
教程分享
>
Java教程
(1124)
2023-03-28 11:29:14
配置http.conf配置文件
解锁以下模块
LoadModule rewrite_module modules/mod_rewrite.so
添加以下配置
<IfModule rewrite_module>
Options +FollowSymLinks
RewriteEngine on
RewriteCond Host: ^localhost$
#RedirectMatch 301 /static/(.*) http\://cdn\.test\.com/static/$1
RedirectMatch 301 /static/img/(.*) http\://cdn\.test\.com/static/img/$1
RedirectMatch 301 /static/echarts\.min\.js http\://cdn\.test\.com/static/echarts\.min\.js
RedirectMatch 301 /static/public-framework\.js http\://cdn\.test\.com/static/public-framework\.js
</IfModule>
https://www.leftso.com/article/515.html