25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RewriteUrl.js 303 B

12345678910111213
  1. /*
  2. * @Description: 重写静态资源URL
  3. * @Author: hai-27
  4. * @Date: 2020-04-07 23:24:37
  5. * @LastEditors: hai-27
  6. * @LastEditTime: 2020-04-07 23:26:37
  7. */
  8. module.exports = async (ctx, next) => {
  9. if (ctx.url.startsWith('/public')) {
  10. ctx.url = ctx.url.replace('/public', '');
  11. }
  12. await next();
  13. }