我正在经历一个奇怪而令人沮丧的问题。我的服务器的文件结构如下:
mysite
_css
style.css
index.cfm
zdevelopment
_css
style.css
index.cfm
问题是无论我做什么,无论我使用相对路径还是绝对路径,我似乎都无法成功链接到 zdevelopment 文件夹中的 style.css 文件(来自 zdevelopment 文件夹中的 index.cfm)。我可以很好地链接到主目录中 _css 文件夹中的 style.css。我知道它没有正确链接,因为样式表在 Chrome(和 Firefox)开发人员工具中被列为未找到。我可以使用 cfinclude 包含样式表没有问题,但我似乎无法链接到它。
我努力了:
_css/style.css
/zdevelopment/_css/style.css
/mysite/zdevelopment/_css/style.css
http://mysite.cfm/zdevelopment/_css/style.css
我尝试将 css 文件复制到与 zdevelopment index.cfm 文件相同的目录中,并且只使用“style.css”。我什至让 Dreamweaver 尝试为我链接到它。没有骰子。我完全被难住了。
编辑:按照 Mahmoud 的建议尝试在浏览器中检查文件(没想到),得到了这个错误:
The page cannot be displayed because an internal server error has occurred.
不知道为什么会这样。我可以在服务器上看到文件。但我想这意味着问题不在于我的链接。有关如何解决此问题的任何建议?