如何在经典 asp 中使用绝对路径?目前整个应用程序包含以下文件:
<!--#include file="../../../../../something.asp"-->
如果我对 asp 文件进行绝对调用,例如:
<!--#include file="/root/foobar/something.asp"-->
有人知道让它工作的技巧吗?
如何在经典 asp 中使用绝对路径?目前整个应用程序包含以下文件:
<!--#include file="../../../../../something.asp"-->
如果我对 asp 文件进行绝对调用,例如:
<!--#include file="/root/foobar/something.asp"-->
有人知道让它工作的技巧吗?
使用基于网站根目录的虚拟路径:
<!--#include virtual="/something.asp"-->
如果在 IIS 中将站点设置更改为“允许父路径”,则第一个示例将起作用。
第二个样本是不可接受的,至少在 Windows 服务器上是不可接受的。