Monday, April 5, 2021

Access to font at from origin has been blocked by CORS policy: No ‘Access-Cont

  • ลองใช้ Codeigniter ไปสักพัก
  • มันขึ้น error ประมาณนี้ตอนเราใช้ style เรียกใช้ font.tff
Access to font at from origin has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource

Solved

  • เพิ่มข้อมูลแบบนี้ใน .htaccess ที่อยู่ root folder ของ Project เรา

<IfModule mod_headers.c>

  <FilesMatch "\.(ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$">

    Header set Access-Control-Allow-Origin "*"

  </FilesMatch>

</IfModule>

  • จะได้ประมาณนี้


Ref

  • https://crunchify.com/how-to-fix-access-control-allow-origin-issue-for-your-https-enabled-wordpress-site-and-maxcdn/
  • https://wordpress.org/support/topic/access-to-font-at-from-origin-has-been-blocked-by-cors-policy-no-access-cont/

No comments:

Post a Comment

Popular Posts