虚拟目录的 Lucee 映射未被映射
Lucee Mappings for virtual directory is not getting mapped
我有一个简单的href
映射
<link rel="stylesheet" href="font/iconsmind-s/css/iconsminds.css" />
我在 Lucee Admin 中添加了一个服务器映射为:
virtual: \font
Resource: C:\lucee\tomcat\webapps\ROOT\fwone\krishi-app\views\resources\css
但是我仍然找不到资源。
我在这里做错了什么?
您混淆了 Lucee 映射 - 它在服务器上运行并在执行 .cfm
模板时进行处理。与使用 HTML <link>
标签相比——从用户浏览器执行。
为了使 css 文件引用能够使用 <link>
标签工作,URL 必须可以在您网站的 webroot 中访问。因此,您应该能够从浏览器中引用 https://www.yourdomain.com/font/iconsmind-s/css/iconsminds.css
并获取 CSS 文件。
我有一个简单的href
映射
<link rel="stylesheet" href="font/iconsmind-s/css/iconsminds.css" />
我在 Lucee Admin 中添加了一个服务器映射为:
virtual: \font
Resource: C:\lucee\tomcat\webapps\ROOT\fwone\krishi-app\views\resources\css
但是我仍然找不到资源。
我在这里做错了什么?
您混淆了 Lucee 映射 - 它在服务器上运行并在执行 .cfm
模板时进行处理。与使用 HTML <link>
标签相比——从用户浏览器执行。
为了使 css 文件引用能够使用 <link>
标签工作,URL 必须可以在您网站的 webroot 中访问。因此,您应该能够从浏览器中引用 https://www.yourdomain.com/font/iconsmind-s/css/iconsminds.css
并获取 CSS 文件。