Nginx无法加载.woff .ttf问题解决 需要在相关.conf 添加
location ~ \.(eot|otf|ttf|woff|woff2|svg)$ {
add_header Access-Control-Allow-Origin *;
}
laravel 访问路由出现404 修改为
location / {
try_files $uri/ /index.php?$query_string;
}
Nginx无法加载.woff .ttf问题解决 需要在相关.conf 添加
location ~ \.(eot|otf|ttf|woff|woff2|svg)$ {
add_header Access-Control-Allow-Origin *;
}
laravel 访问路由出现404 修改为
location / {
try_files $uri/ /index.php?$query_string;
}