選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }