无法让 IIS 提供指定目录中的 .js 文件
我在 Windows 2000 计算机上运行 IIS 5。
我在网站的“scripts”目录中有一个应用程序设置,因为它运行一些已编译的 DLL。 该应用程序设置为运行脚本和可执行文件。
由于某种原因,当我尝试访问该目录中的任何 .js 文件时,我收到“系统找不到指定的文件。”。 我尝试将 .js 作为“text/javascript”mime 类型添加到网站和目录中,但似乎没有帮助。
我还检查了 Web 服务器本身,.js mime 类型设置为 application/octet-stream。 我将其更改为text/javascript,但它仍然不起作用。 我需要重新启动 IIS 或应用程序池吗? 或者我找错地方了。
我还尝试使用 text/text 和 text/html 但这没有帮助。
我可以访问该目录中的 .htm、.jpg 甚至 .asp 文件。
有任何想法吗? 提前致谢!
I'm running IIS 5 on a Windows 2000 machine.
I have an application setup in my "scripts" directory in my website, because it runs some compiled DLL's. The application is set to run scripts and executables.
For some reason, when I try and access any .js files in that directory, I get "The system cannot find the file specified.". I tried adding .js as a "text/javascript" mime type, to both the website and the directory, but it doesn't seem to help.
I also checked the web server itself, and the .js mime type was set to application/octet-stream. I changed it to text/javascript, but it still doesn't work. Do I need to restart IIS or the application pool? Or am I looking in the wrong place.
I also tried using text/text and text/html but that didn't help.
I am able to access .htm, .jpg, and even .asp files in that directory.
Any ideas? Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
网址扫描!!!!
我检查了 URLScan 的日志目录,它阻止了基于 .js 扩展名的文件。 我将其添加到 urlscan.ini,重新启动 IIS,瞧! 有效!
更多信息:
目录:
URLScan - C:\WINNT\System32\inetsrv\urlscan\
URLScan 日志 - C:\WINNT\System32\inetsrv\urlscan\logs\
URLScan INI 文件 - C:\WINNT\System32\inetsrv\urlscan\urlscan.ini
URLSCAN!!!!!
I checked the log directory for URLScan and it was blocking files based on the .js extension. I added it to the urlscan.ini, restarted IIS, and voila! It worked!
More Info:
Directories:
URLScan - C:\WINNT\System32\inetsrv\urlscan\
URLScan logs - C:\WINNT\System32\inetsrv\urlscan\logs\
URLScan INI file - C:\WINNT\System32\inetsrv\urlscan\urlscan.ini
我会使用 FileMon 工具来查看 IIS 是否正在尝试访问 JS 文件。 这可能是一个安全问题。
I would use the FileMon tool to see if IIS is even trying to access the JS files. It could be a security problem.
IIS 帐户是否具有该目录的读取权限?
.js 文件可以在服务器上的任何其他虚拟目录中工作吗?
Does the IIS account have read access to the directory?
Do .js files work in any other virtual directory on the server?